How do I change the default application icon in Java?

后端 未结 10 835
心在旅途
心在旅途 2020-11-27 17:02

I\'m using NetBeans, trying to change the familiar Java coffee cup icon to a png file that I have saved in a resources directory in the jar file. I\'ve found many different

10条回答
  •  星月不相逢
    2020-11-27 17:32

    java.net.URL url = ClassLoader.getSystemResource("com/xyz/resources/camera.png");
    

    May or may not require a '/' at the front of the path.

提交回复
热议问题