无法从 JFileChooser 获取正确的文件路径
我创建了一个 JFileChooser,用它来定位要保存文件的目录。
saveChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
saveChooser.showSaveDialog(null);
String exportPath = saveChooser.getCurrentDirectory() + "\\exportedData.txt";
System.out.println(exportPath);
(然后我使用 exportPath 作为我的文件编写器)
当我选择 C:\Users\'me'\Eclipse\workspace\'project'\files 在 JFileChooser 中 输出是 C:\Users\'me'\Eclipse\workspace\'project'\exportedData.txt
我尝试保存到多个位置。似乎它总是删除最后一个目录。 但是,当我选择 root C:\ 时,它使用“我的文档”,这是我认为的默认设置。 我知道这可能不是保存文件的最佳方法,并且会出现一些错误,抱歉。 (文件名和扩展名在代码中设置)。
I've created a JFileChooser which I use to locate a directory for a file to be saved to.
saveChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
saveChooser.showSaveDialog(null);
String exportPath = saveChooser.getCurrentDirectory() + "\\exportedData.txt";
System.out.println(exportPath);
(I then use exportPath for my file writer)
When I choose
C:\Users\'me'\Eclipse\workspace\'project'\files
in the JFileChooser
the output is
C:\Users\'me'\Eclipse\workspace\'project'\exportedData.txt
I've tried saving to multiple locations. It seems like it always drops the last directory.
However, when I select root C:\ it uses My Documents which is the default I suppose.
I know this probably isn't the best way to save a file and opens up to a few bugs, sorry. (The file name and extension is set in code).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你想要 saveChooser.getSelectedFile(),在这种情况下,所选文件实际上是一个目录。希望是对的,没有测试。
I would guess that you want saveChooser.getSelectedFile(), and that in this case the selected file is really a directory. Hope that's right, didn't test.