JFileChooser保存对话框建议文件名[重复]
Posted
技术标签:
【中文标题】JFileChooser保存对话框建议文件名[重复]【英文标题】:JFileChooser Save Dialog Suggest File Name [duplicate] 【发布时间】:2012-12-22 12:38:35 【问题描述】:可能重复:JFileChooser.showSaveDialog(…) - how to set suggested file name
我已经看到这个问题被问了几次,但没有一个答案对我有任何帮助。我希望保存对话框使用 JFileChooser 建议类似“myFile.txt”的文件名。
这是我所拥有的:
JFileChooser jFileChooser = new JFileChooser();
jFileChooser.setCurrentDirectory(new File("C:\\"));
jFileChooser.showSaveDialog(null);
【问题讨论】:
这不起作用? ***.com/questions/356671/… 抱歉,从来没有遇到过这些。我什至在输入此内容时浏览了这些建议。 【参考方案1】:这样就可以了:
jFileChooser.setSelectedFile(new File(optionalPath + "myFile.txt"));
【讨论】:
以上是关于JFileChooser保存对话框建议文件名[重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 JFileChooser 保存对话框中处理问号或星号(“?”或“*”)?