String filepath;
chooser.showOpenDialog(this);
filepath = chooser.getSelectedFile().getPath();
如何保存filepath
?
因为下次运行项目时,我想自动打开文件,但filepath
总是再次设置为" "
。
我不想设置filepath
的具体路径,因为它取决于用户。
提前致谢。
答案 0 :(得分:1)
您可以使用Java的Preferences API,这就是它的目的:
Preferences node = Preferences.userRoot().node("MyApp");
// store the file path
node.put("filepath", filepath);
// retrieve the file path
filepath = node.get("filepath", "");