首页 > 其他 > 详细

JFileChooser记住上次选择的路径

时间:2014-06-15 07:39:09      阅读:1332      评论:0      收藏:0      [点我收藏+]
String saveFolder = "C:\\";
Preferences pref = Preferences.userRoot().node(
this.getClass().getName());
String lastPath = pref.get("lastPath", "");
JFileChooser fc = null;
if (!lastPath.equals("")) {
    fc = new JFileChooser(lastPath);
} else{
    fc = new JFileChooser(saveFolder);
}
saveFolder = fc.getSelectedFile().getPath();
pref.put("lastPath",saveFolder);

 

JFileChooser记住上次选择的路径,布布扣,bubuko.com

JFileChooser记住上次选择的路径

原文:http://www.cnblogs.com/sosomaxba/p/3785910.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!