How to load icon from resource in Java?

后端 未结 3 750
遇见更好的自我
遇见更好的自我 2021-01-18 02:20

Possible duplication (solved): https://stackoverflow.com/a/1133132/783469

I have icons (jpg, png) for my application, which is stored in

3条回答
  •  被撕碎了的回忆
    2021-01-18 02:39

    Resource loading takes place in the classpath, relative to the current package. If /var/tmp/gameXbox/src/ is in your classpath, then:

    ImageIO.read( ClassLoader.getSystemResource( "image/button1.png" ) );
    

    However, usually the src folder is not included in the classpath by IDEs. Try adding the image to the bin folder.

提交回复
热议问题