修改 JFileChooser 以仅显示文件夹内容
我正在尝试开发一个 GUI 应用程序,它在左侧显示文件系统树,在右侧显示选定的树节点(文件夹)的内容。 任何人都可以告诉我在 jfilechooser 中进行修改以仅显示文件夹内容 先感谢您
i m trying to develop an gui application which display tree of filesystem on left side and on right side it display selected tree nodes (folder)'s content .
can any body tell me to do modification in jfilechooser to just to display folder content
thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JFileChooser#accept
允许您过滤显示哪些文件。类似的方法是JFileChooser#setFileFilter
方法The
JFileChooser#accept
allows you to filter which files are displayed. A similar method is theJFileChooser#setFileFilter
method请参阅:示例
See: example
也许这就是您所期望的:-
Perhaps this is what you expected:-