我有两个按钮都打开 filedialog 我想要的两个按钮应该总是在他们按下时在 filedialog 中打开它们的相关目录。在我的情况下 filedialog 保留我不想要的最后一个打开的目录。
问问题
3118 次
1 回答
5
您没有命名使用的框架,但假设它是 Swing,JFileChooser
具有一些允许设置初始路径的构造函数:
JFileChooser(File currentDirectory)
Constructs a JFileChooser using the given File as the path.
对于AWT 框架,在显示对话框之前FileDialog
使用 setter 设置目录
setDirectory(String dir)
Sets the directory of this file dialog window to be the specified directory.
于 2011-01-20T07:52:41.957 回答