文件对话框的实例

packagelesson4;importjava.awt.*;importjava.awt.event.*;publicclassTestFileDialogexten... package lesson4;
import java.awt.*;
import java.awt.event.*;

public class TestFileDialog extends Frame{

FileDialog filedg=new FileDialog(this);
Button bSave=new Button("Save");
Button bOpen=new Button("Open");

public TestFileDialog(){
init();
}
void init(){
this.setLayout(new FlowLayout());
this.add(bOpen);
this.add(bSave);

bOpen.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
filedg.setMode(FileDialog.LOAD);
filedg.setTitle("打开");
filedg.setVisible(true);
System.out.println(filedg.getFile());
}
});
bSave.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
filedg.setMode(FileDialog.SAVE);
filedg.setTitle("保存");
filedg.setVisible(true);
}
});
this.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
e.getWindow().setVisible(false);
((Window)e.getComponent()).dispose();
System.exit(0);
}
});
this.setSize(500,300);
this.setTitle("FileDialog");
this.setVisible(true);
}

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

}
展开
 我来答
kaixinwoo
2011-01-05 · 超过50用户采纳过TA的回答
知道答主
回答量:164
采纳率:0%
帮助的人:141万
展开全部
你那里有问题说明白了点,光贴代码都不知道你要做什么。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式