如何设置jfilechooser的打开路径

 我来答
LHdi1212
2016-09-21 · TA获得超过149个赞
知道小有建树答主
回答量:576
采纳率:0%
帮助的人:275万
展开全部
如何设置jfilechooser的打开路径
量身打造 请测试...import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import java.util.Properties;public class FileChooser extends JFrame implements ActionListener{
private JButton open;
private JFileChooser chooser;
private String latestPath ;
private Profile profile;
public FileChooser() {
profile = new Profile();//每次运行程序时创建配置文件Profile对象
latestPath = (profile.read()?profile.latestPath:"C:/");//读取配置文件里的参数Profile并赋值给latestPath
open = new JButton("open");
this.add(open);
this.setSize(200,150);
this.setLocationRelativeTo(null);//窗口居中
this.setVisible(true);
open.addActionListener(this);
this.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent we){
profile.write(latestPath);//每次退出程序时把最后一次打开的目录写入到配置文件
}
});
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式