使用不存在的目录初始化 JFileChooser

发布于 2024-08-06 02:21:29 字数 305 浏览 6 评论 0原文

在我们的安装程序中,我想让用户能够使用安装目录,显然该目录还不存在。我希望当按下浏览按钮时,将打开一个JFileChooser对话框,并将使用当前选择的目录进行初始化。但是,setCurrentDirectory 仅适用于现有目录,而 setSelectedFile 似乎仅在不像我一样使用 DIRECTORIES_ONLY 时才适用。

有什么办法解决这个问题吗?

谢谢,

裂片

In our installation program I want to enable users to use install directory which, obviously, does not exist yet. I want that when the Browse button is pressed, a JFileChooser dialog will be opened, and will be initialized with the currently selected directory. However, setCurrentDirectory only works with existing directories, and setSelectedFile only seems to work when not working with DIRECTORIES_ONLY like I do.

Is there any way around this?

Thanks,

splintor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

内心激荡 2024-08-13 02:21:29

这是我找到的(部分)解决方案。这对我来说已经足够好了:

JFileChooser fc = new JFileChooser(initialExistingDirectory);
FileChooserUI fileChooserUI = fc.getUI();
if (fileChooserUI instanceof BasicFileChooserUI)
{
    BasicFileChooserUI basicFileChooserUI = (BasicFileChooserUI) fileChooserUI;
    basicFileChooserUI.setFileName(initialNonExistingDirectory);
}

This is the (partial) solution I found. It is good enough for me:

JFileChooser fc = new JFileChooser(initialExistingDirectory);
FileChooserUI fileChooserUI = fc.getUI();
if (fileChooserUI instanceof BasicFileChooserUI)
{
    BasicFileChooserUI basicFileChooserUI = (BasicFileChooserUI) fileChooserUI;
    basicFileChooserUI.setFileName(initialNonExistingDirectory);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文