Java - 如何更改文件夹的图标
那么我如何更改Java(Windows系统)中文件夹的图标是否有一个类或其他东西,因为我已经搜索过但找不到任何东西......
So how do I change the icon of a folder in Java (Windows system) is there a class or something cause I have searched and I can't find anything...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据评论,您正在讨论的文件夹图标是在文件夹本身的隐藏“ini”文件中指定的。
您可以通过将文件读取为文本等来创建/修改文件,但使用现有的第 3 方 Java 库更简单。我已经成功使用开源 ini4j Java 库。
Based on the comments, the folder icon that you are talking about is specified in a hidden "ini" file in the folder itself.
You could create / modify the file by reading it as text, etcera, but it is simpler to use an existing 3rd-party Java library. I've had success using the open-source ini4j Java library.
我使用 ini4J 做到了这一点,并且它仅在一种条件下与我一起工作:文件夹路径不应有任何空格。
代码:
I did that using ini4J and It is working with me under only one condition : Folder path shouldn't have any space.
The Code: