可能重复:
JFileChooser.showSaveDialog(…) - how to set suggested file name
我已经看过几次这个问题,但没有回答对我有任何帮助。我希望保存对话框使用JFileChooser建议像“myFile.txt”这样的文件名。
以下是我所拥有的:
JFileChooser jFileChooser = new JFileChooser();
jFileChooser.setCurrentDirectory(new File("C:\\"));
jFileChooser.showSaveDialog(null);
答案 0 :(得分:8)
这样做:
jFileChooser.setSelectedFile(new File(optionalPath + "myFile.txt"));