JFileChooser保存路径的问题

记住JFileChooser路径
本文介绍了一种让JFileChooser记住上次打开文件夹位置的方法。通过使用Java Preferences API将路径保存到注册表中,再次启动JFileChooser时能直接定位到上一次的位置。

我们在用JFileChooser时,每次都默认从"我的文档"里打开,怎么才能让它“记”住上一次的位置呢,这里有一个很简单的方法,那就是将上次的路径保存在注册表里,然后在启动JFileChooser之前,将路径从注册表读出来,再把它作为参数初始化JFileChooser,下面是具体代码:

  1. Preferences pref = Preferences.userRoot().node("/com/lingyun");
  2.             String lastPath = pref.get("lastPath""");
  3.             JFileChooser chooser = null;
  4.             if(!lastPath.equals("")){
  5.                 chooser = new JFileChooser(lastPath);
  6.                 System.out.println("lastPath:" + lastPath);
  7.             }
  8.             else
  9.                 chooser = new JFileChooser();
  10.             chooser.setFileFilter(new PdfFilter());
  11.             chooser.showOpenDialog(this);
  12.             File choosedFile = chooser.getSelectedFile();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值