从文件/文件夹java中提取图标
我正在尝试使用 Java 从特定文件或目录中提取图标图像。我浏览过互联网,但没有找到这个问题的合理答案。有没有任何库可以帮助我实现这一目标?
谢谢, TC
I am trying to extract icons images from specific files or directory using Java. I have looked around the internet but haven't found a reasonable answer to this question. Are there any libraries which would help me achieve this?
thanks,
TC
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这有帮助吗?
http://www.rgagnon.com/javadetails/java-0439.html
Can this help ?
http://www.rgagnon.com/javadetails/java-0439.html
实际上非常简单,您只需要使用:
URL Class#getResource(String)
,或输入流类#getResourceAsStream(String)
。有关示例,请查看如何使用图标。
It's pretty simple actually, you just need to use:
URL Class#getResource(String)
, orInputStream Class#getResourceAsStream(String)
.For an example, check out How to Use Icons.