JFilechooser 的文件名文本字段
我使用 JFileChooser 和 setSelectedFile 例如“D:\outlook”,当显示 showSaveDialog 时,JTextField 中的文件名是 D:\ 并选择 Outlook 文件夹,我不希望这样,我希望选择 Outlook 文件夹并JTextField 中的文件名是 D:\outlook 而不是 D:\
I use JFileChooser and setSelectedFile such as "D:\outlook", and when show showSaveDialog, the file Name in JTextField is D:\ and the outlook folder selected, and I don't want like this, I want outlook folder selected and the file Name in JTextField is D:\outlook not D:\
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
setCurrentDirectory
而不是setSelectedFile
。就像这样:Instead of
setSelectedFile
usesetCurrentDirectory
. Like so: