无法从 JFileChooser 获取正确的文件路径

发布于 2024-08-12 17:38:40 字数 597 浏览 4 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑,眼淚并存 2024-08-19 17:38:40

我猜你想要 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文