如何在所需目录中打开文件对话框

发布于 2024-10-12 15:06:53 字数 100 浏览 1 评论 0原文

我有两个按钮都打开 filedialog 我想要的两个按钮在按下时应始终在 filedialog 中打开其相关目录。在我的情况下,filedialog 保留我不想要的最后一个打开的目录。

I have two buttons both open filedialog what i want both button should always open their related directories in filedialog when they press.In my case filedialog keep the last open directory which i don't want.

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

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

发布评论

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

评论(1

辞旧 2024-10-19 15:06:53

您没有命名使用的框架,但假设它是 Swing, JFileChooser 有一些构造函数允许设置初始路径:

JFileChooser(File currentDirectory)
      Constructs a JFileChooser using the given File as the path.

对于 FileDialog 来自 AWT 框架,使用 setter 在显示对话框之前设置目录

setDirectory(String dir)
      Sets the directory of this file dialog window to be the specified directory.

You didn't name the used framework, but assuming, it's Swing, JFileChooser has some constructors that allow to set the initial path:

JFileChooser(File currentDirectory)
      Constructs a JFileChooser using the given File as the path.

For FileDialog from the AWT framework, use a setter to set the directory before displaying the dialog

setDirectory(String dir)
      Sets the directory of this file dialog window to be the specified directory.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文