A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© crazy_primitive 中级黑马   /  2013-7-30 15:13  /  989 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 杨兴庭 于 2013-7-30 23:07 编辑
  1. public class DirectoryDemo {
  2.         Frame fr;
  3.         TextField tf;
  4.         Button but;
  5.         TextArea ta;
  6.         DirectoryDemo(){
  7.                 addWindowProperty();
  8.         }
  9.         public void addWindowProperty(){
  10.                 fr = new Frame("目录");
  11.                 tf = new TextField(50);
  12.                 but = new Button(" 转到 ");
  13.                 ta = new TextArea(25,58);
  14.                
  15.                 fr.setLayout(new FlowLayout());
  16.                 fr.setBounds(300, 100, 600, 500);
  17.                
  18.                 fr.add(tf);
  19.                 fr.add(but);
  20.                 fr.add(ta);
  21.                 fr.setVisible(true);
  22.                
  23.                 but.addActionListener(new ActionListener() {
  24.                         public void actionPerformed(ActionEvent e) {
  25.                                 ta.setText("");
  26.                                 String dirpath = tf.getText();
  27.                                 File dir = new File(dirpath);
  28.                                 if(dir.exists() && dir.isDirectory()){
  29.                                         String[] strs = dir.list();
  30.                                         for(String str : strs){
  31.                                                 ta.append(str+"\r\n");
  32.                                         }
  33.                                         ta.setText("目录不存在!");//每次程序执行结果都是“目标不存在”?我想把它做的友好一点儿,可是加了这行代码了每次都只打印这句话,如果把它去掉了,就没有问题了,是因为异常处理么?
  34.                                 }
  35.                         }
  36.                 });
  37.                 fr.addWindowListener(new WindowAdapter(){
  38.                         public void windowClosing(WindowEvent e) {
  39.                                 System.exit(0);
  40.                         }
  41.                 });
  42.         }
  43.         public static void main(String[] args) {
  44.                 new DirectoryDemo();
  45.         }
  46. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

3 个回复

倒序浏览
哪里因为你有把TextArea的值从新置为"目录不存在了"如果不存在,你可以让它弹出一个对话框

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

回复 使用道具 举报
好吧,这个错误好像挺低级的。。。。。。。
回复 使用道具 举报
你判断目录不存在的话,弹出一也对话框,也成一个封装类比较好,例如:
public class MyDialog {
        private Frame frame;//框架
        private Dialog dialog;//对话框
    private Label info;//显示内容的
    private Button OK;//确定按钮
    private String path;//路径
    public MyDialog(Frame frame,String path){
            this.frame=frame;
            this.path=path;
            MyFrame();
    }
    public void MyFrame(){//dialog上的组件的集合
            dialog =new Dialog(frame,"提示信息",true);
            dialog.setLayout(new FlowLayout());//设置布局为流水式
            //dialog.setBounds(300, 100, 200, 150);
            dialog.setLocation(300, 200);
            info =new Label();
            info.setText("您输入的路径:"+path+"不正确,请重新输入");
            String textPath=info.getText();
            byte [] text=textPath.getBytes();
            dialog.setSize(text.length*7,100);
            dialog.add(info);
           
            OK =new Button("确定");
            dialog.add(OK);  
            MyEvent();
            dialog.setVisible(true);         
    }
    public void MyEvent(){//监听器的触发事件
            dialog.addWindowListener(new WindowAdapter(){
                    public void windowClosing(WindowEvent e) {
                            dialog.setVisible(false);
                        }
            });
            OK.addActionListener(new ActionListener(){
                        public void actionPerformed(ActionEvent e) {
                                dialog.setVisible(false);
                        }                   
            });
    }
}

在判断的时候实例此对象就可以  newMyDialog(框架对象,获取的路径);
希望对你有帮助!

评分

参与人数 1技术分 +2 收起 理由
杨兴庭 + 2 赞一个!

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马