您的位置:首页 > 产品设计 > UI/UE

GUI(练习-列出指定目录内容)

2012-09-20 23:29 531 查看
/*
* 程序头部注释开始
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:GUI(练习-列出指定目录内容)
* 作    者:薛广晨
* 完成日期:2011  年 09 月  20  日
* 版 本号:x1.0

* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:
* 程序输出:
* 程序头部的注释结束
*/

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

public class MyWindow {

/**
* @param args
*/
private Frame f;
private TextField tf;
private Button but;
private TextArea ta;

MyWindow()
{
init();
}
public void init()
{
f = new Frame("my window");
f.setBounds(300, 100, 600, 500);
f.setLayout(new FlowLayout());

tf = new TextField(60);

but = new Button("转到");

ta = new TextArea(25, 70);

f.add(tf);
f.add(but);
f.add(ta);

myEvent();
f.setVisible(true);
}
private void myEvent() {
// TODO Auto-generated method stub
but.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
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");
}
}
}
});
f.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});

}
public static void main(String[] args) {
// TODO Auto-generated method stub
new MyWindow();

}

}

运行结果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息