Frame应用:打开电脑内的文件夹

package collection;

import java.awt.*;
import java.awt.event.*;
import java.io.File;

public class Demo4{

 /**
  * @练习
  *
  */
 
 private Frame f;
 private TextField tf;
 private Button but;
 private TextArea ta;
 
 private Dialog d;
 private Label lab;
 private Button okBut;
 
 Demo4(){
  init();
 }
 public void init(){
  f = new Frame("MyWindow");
  f.setBounds(300, 100, 600, 500);
  f.setLayout(new FlowLayout());//流布局
  
  tf = new TextField(29);
  
  but = new Button("change to:");
  
  ta = new TextArea(25,40);
  
  d = new Dialog(f,"information_self",true);
  d.setBounds(400, 200, 250, 100);
  d.setLayout(new FlowLayout());
  lab = new Label();
  okBut = new Button("Yes");
  
  d.add(lab);
  d.add(okBut);
  
  f.add(tf);
  f.add(but);
  f.add(ta);
  
  myEvent();
  
  f.setVisible(true);
 }
 
 private void myEvent(){

  tf.addKeyListener(new KeyAdapter(){
   
   public void keyPressed(KeyEvent e){
    if(e.getKeyCode()==KeyEvent.VK_ENTER)
     showDir();
   }
   
  });
  
  okBut.addActionListener(new ActionListener(){

   @Override
   public void actionPerformed(ActionEvent e) {
    d.setVisible(false);
   }
  });
  
  d.addWindowListener(new WindowAdapter(){
   public void windowClosing(WindowEvent e){
    d.setVisible(false);
   }
  });
  
  but.addActionListener(new ActionListener(){

   @Override
   public void actionPerformed(ActionEvent e) {
    showDir();

   }
  });
  
  f.addWindowListener(new WindowAdapter(){
   public void windowClosing(WindowEvent e){
    System.exit(0);
   }
  });

 }
 
 private void showDir(){
  String dirPath = tf.getText();
  
  File dir = new File(dirPath);
  if(dir.exists() && dir.isDirectory()){
   ta.setText("");
   String[] names = dir.list();
   
   for(String name: names){
    ta.append(name+"\r\n");
   }
  }
  else{
   String info = "The input \" "+dirPath +" \" is wrong, please input again!";
   lab.setText(info);
   d.setVisible(true);
   
  }
  
  tf.setText("");
 }
 
 public static void main(String[] args) {
  new Demo4();
 }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值