How to includes all images in jar file using eclipse

后端 未结 4 1598
生来不讨喜
生来不讨喜 2020-11-29 10:38

I made a java application and bundled all classes in a jar file. When I run the project from eclipse, my application is running successfully. But when I try to run my

4条回答
  •  时光取名叫无心
    2020-11-29 11:16

    100% works

    final public ImageIcon iReport = new ImageIcon(getClass().getResource("/Report.png"));
    

    Don't forget about "/" at path for image.

提交回复
热议问题