如何select"My Documents"路径保存文件
How to select "My Documents" path to save a file
我想这样做:
JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty(**MY DOCUMENTS PATH **)));
我只想放"My Documents"路径,它在不同的windows版本中会发生变化,但我不知道该怎么做。
我不能使用 "literal path" 我需要一个相对路径,因为这个应用程序将适用于所有 windows 版本,我不能使用文字路径。
据我所知,这是所有 windows 版本的 "my document" 路径:
String myDocumentPath = System.getProperty("user.home") + "Documents";
我想这样做:
JFileChooser fileChooser = new JFileChooser();
fileChooser.setCurrentDirectory(new File(System.getProperty(**MY DOCUMENTS PATH **)));
我只想放"My Documents"路径,它在不同的windows版本中会发生变化,但我不知道该怎么做。
我不能使用 "literal path" 我需要一个相对路径,因为这个应用程序将适用于所有 windows 版本,我不能使用文字路径。
据我所知,这是所有 windows 版本的 "my document" 路径:
String myDocumentPath = System.getProperty("user.home") + "Documents";