我想这样做:
JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty(**MY DOCUMENTS PATH **)));
我想要做的就是把“我的文档”路径,它在不同的Windows版本中更改,但我不知道该怎么做。
我不能使用“文字路径”我需要一个相对路径,因为这个应用程序将适用于所有Windows版本,我不能使用文字路径。
答案 0 :(得分:4)
据我所知,这是"我的文件"所有Windows版本的路径:
String myDocumentPath = System.getProperty("user.home") + "Documents";