如何从 Java 应用程序获取要显示的文件的图标?
是否可以从 Java 桌面应用程序中找到给定文件显示的图标(也许基于它的 mime 类型)? 具体来说,我想请求主机操作系统显示图标,以便它可以匹配用户期望看到的内容。
Is it possible from a Java desktop app to find the icon to display for a given file, perhaps based on it's mime type? Specifically I want to ask the host OS for the icon to display so it can match what the user would expect to see.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一些示例。 相关代码为:
编辑(包含注释)官方帮助页面为此处。
There is some example here. The relevant code would be:
Edit (included comment) The official help page is here.
据我所知,您唯一能做的就是使用 JTree 的 DefaultTreeCellRenderer。 您可以在 Java API 中阅读更多信息。
我在这里给大家举几个例子。 我已经有一段时间没有使用它了,所以你需要更深入地挖掘才能得到你想要的东西。
AS far as I know the only thing you can do is using the JTree's DefaultTreeCellRenderer. You can read more in the Java API.
I'll give you a few examples here. I haven't used it in a while so you will need to dig a little deeper to get what you want.