如何在 Java 应用程序中添加文件浏览器?
我是 Java 编程新手,正在构建一个应用程序,该应用程序将添加、显示和删除给定文件夹位置中的文件。
我已经使用 JFileChooser 添加了文件,并且知道如何删除这些文件。 然而我被显示部分困住了。
我想在应用程序中使用不同的图标显示文件和文件夹。 我尝试在显示面板内添加 JFileChooser 并禁用对话框的按钮和菜单组件,但没有成功。 有没有更好的方法来做到这一点?
I am new to Java progamming and am building a application that will add, display and remove files from a given folder location.
I have added files using JFileChooser and know how to delete the files. However I am stuck with the display portion.
I want to display the files and folder using different icon inside my application. I tried to add a JFileChooser inside the display panel and disable the button and menu components of the dialog box, but I have not succeeded. Is there any better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我更喜欢下面的方式。
调用此代码将导致
JFileChooser
在其自己的窗口中弹出。我通常从
JButton
的ActionListener
代码中调用它。I prefer the following way.
Calling this code will cause a
JFileChooser
to popup in its own window.I usually call it from within a
JButton
'sActionListener
code.如果您不需要
JFileChooser
的所有灵活性,则应该使用java.awt.FileDialog
。 您的 OS X 用户将会感谢您。FileDialog
使用本机文件选择器窗口,而JFileChooser
是一个 swing 组件,缺乏键盘快捷键和其他细节。If you don't need all the flexibility of
JFileChooser
, you should usejava.awt.FileDialog
instead. Your OS X users will thank you.FileDialog
uses a native file chooser window, whileJFileChooser
is a swing component, and lacks keyboard shortcuts and other niceties.我从未完全复制过文件浏览器。 我已使用您的平台提供的图标在列表/表格中显示文件。 在 的帮助下这很容易做到文件系统视图。 使用 getSystemIcon(File) 方法检索正确的图标。 然后您可以使用此图标构建文件的 JList/JTable。
I've never fully replicated a file browser. I have displayed files in list/tables using the icon that is provided by your platform. This is rather easy to do with the help of FileSystemView. Use the getSystemIcon(File) method to retrieve the correct icon. Then you can build a JList/JTable of files using this icon.