如何在所需目录中打开文件对话框
我有两个按钮都打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有命名使用的框架,但假设它是 Swing,
JFileChooser
有一些构造函数允许设置初始路径:对于
FileDialog
来自 AWT 框架,使用 setter 在显示对话框之前设置目录You didn't name the used framework, but assuming, it's Swing,
JFileChooser
has some constructors that allow to set the initial path:For
FileDialog
from the AWT framework, use a setter to set the directory before displaying the dialog