JFileChooser保存对话框建议文件名

时间:2012-12-22 12:38:36

标签: java swing filenames jfilechooser savefiledialog

  

可能重复:
  JFileChooser.showSaveDialog(…) - how to set suggested file name

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

以下是我所拥有的:

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

1 个答案:

答案 0 :(得分:8)

这样做:

jFileChooser.setSelectedFile(new File(optionalPath + "myFile.txt"));