如何选择"我的文件"保存文件的路径

时间:2015-02-26 13:35:01

标签: java file path save jfilechooser

我想这样做:

JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty(**MY DOCUMENTS PATH **)));

我想要做的就是把“我的文档”路径,它在不同的Windows版本中更改,但我不知道该怎么做。

我不能使用“文字路径”我需要一个相对路径,因为这个应用程序将适用于所有Windows版本,我不能使用文字路径。

1 个答案:

答案 0 :(得分:4)

据我所知,这是"我的文件"所有Windows版本的路径:

String myDocumentPath = System.getProperty("user.home") + "Documents";