我正在阅读 How to change an icon for one single file of the specific type? ,但我想知道这是否可以用于Java?我知道如何更改整个文件类型的图标,但我不确定如何或是否可以更改某个特定文件的图标。
答案 0 :(得分:0)
您可以使用setIconImage:
frame.setIconImage(
new imageIcon(getClass().getClassLoader().getResource("image.png")));
另请查看JSmooth