?? testfiledialog.java
字號(hào):
import java.awt.*;
import java.awt.event.*;
/**
* Description:
* <br/>Copyright (C), 2005-2008, Yeeku.H.Lee
* <br/>This program is protected by copyright laws.
* <br/>Program Name:
* <br/>Date:
* @author Yeeku.H.Lee kongyeeku@163.com
* @version 1.0
*/
public class TestFileDialog
{
Frame f = new Frame("測(cè)試");
FileDialog d1 = new FileDialog(f, "選擇需要打開文件" , FileDialog.LOAD);
FileDialog d2 = new FileDialog(f, "選擇保存文件的路徑" , FileDialog.SAVE);
Button b1 = new Button("打開文件");
Button b2 = new Button("保存文件");
public void init()
{
b1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
d1.setVisible(true);
System.out.println(d1.getDirectory() + d1.getFile());
}
});
b2.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
d2.setVisible(true);
System.out.println(d2.getDirectory() + d2.getFile());
}
});
f.add(b1);
f.add(b2 , BorderLayout.SOUTH);
f.pack();
f.setVisible(true);
}
public static void main(String[] args)
{
new TestFileDialog().init();
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -