如何使用.jar文件中的图像?

时间:2014-11-01 15:03:14

标签: java image jframe

我的"计划"显示图像,但仅限于与.jpg文件位于同一文件夹中。我希望将我的图像放在.jar文件中,我该怎么做? 我的代码

 image = new ImageIcon("pobrane.jpg").getImage();

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

 image = new ImageIcon(getClass().getResource("pobrane.jpg")).getImage();