码迷,mamicode.com
首页 > 其他好文 > 详细

JFileChooser记住上次选择的路径

时间:2014-06-15 07:39:42      阅读:447      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   get   

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记住上次选择的路径

标签:style   class   blog   code   color   get   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!