How to load icon from resource in Java?

后端 未结 3 752
遇见更好的自我
遇见更好的自我 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:47

    I usually use class.getResource for this kind of operation :

    YourClass.class.getResource("image/button1.png")
    

    i use it to retrieve the file from a jar archive but should work also to retrieve from filesystem resources.

提交回复
热议问题