3

可能重复:
JFileChooser.showSaveDialog(...) - 如何设置建议的文件名

我已经看到这个问题被问了几次,但没有答案对我有任何帮助。我希望保存对话框使用 JFileChooser 建议像“myFile.txt”这样的文件名。

这是我所拥有的:

JFileChooser jFileChooser = new JFileChooser();
jFileChooser.setCurrentDirectory(new File("C:\\"));
jFileChooser.showSaveDialog(null);
4

1 回答 1

10

这将做到:

jFileChooser.setSelectedFile(new File(optionalPath + "myFile.txt"));
于 2012-12-22T12:44:18.737 回答