如何在fileDialogue中打开具有特定扩展名的文件
我正在尝试使用文件对话框打开具有特定扩展名( .fcg 或 .wtg )的文件 有办法做到吗?
I am trying to Open a file with specific extension ( .fcg or .wtg ) using file Dialog
is there a way to do it ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您可以使用
JFileChooser
,则可以使用JFileChooser.addChoosableFileFilter()
按扩展名过滤文件。If you can use
JFileChooser
you can useJFileChooser.addChoosableFileFilter()
to filter files by extension.您可以使用此代码选择一个文件并读取
You can use this this code to choose a file and read
因为这对我来说是谷歌搜索#1,所以这是最适合我的解决方案:
如何将java中的文件选择器限制为特定文件
细节:
As this is google search #1 for me, this is the solution which worked best for me:
How to restrict file choosers in java to specific files
specifics: