注释很详细,直接上代码
上一篇
新增内容
1.文件对话框(保存文件)
2.文件对话框(打开文件)
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class swing_test_13 {
public static void main(String[] args) {
Frame frame = new Frame("测试文件对话框");
//创建两个FileDialog对象
FileDialog fd1 = new FileDialog(frame, "打开文件", FileDialog.LOAD);
FileDialog fd2 = new FileDialog(frame, "保存文件", FileDialog.SAVE);
//创建两个按钮
Button b1 = new Button("打开文件");
Button b2 = new Button("保存文件");
//给两个按钮设置点击后的行为,获取打开或保存的对应路径和文件名
b1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
fd1.setVisible(true);
String path = fd1.getDirectory();//获取文件路径
String name = fd1.getFile();//获取文件名
System.out.println("打开的文件路径:" + path);
System.out.println("打开的文件名:" + name);
}
});
b2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
fd2.setVisible(true);
String path = fd2.getDirectory();//获取文件路径
String name = fd2.getFile();//获取文件名
System.out.println("保存的文件路径:" + path);
System.out.println("保存的文件名:" + name);
}
});
//将两个按钮添加到窗体中
frame.add(b1, BorderLayout.NORTH);
frame.add(b2,BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
}
}
运行效果: