作为 Jar 运行时找不到图像
我想请教一下我项目中的一个问题: 我有一个扩展 JFrame
的类,我想使用以下代码将该框架上的 Java 图标更改为另一个图标:
setIconImage(new ImageIcon(getClass().getResource("icon.PNG")).getImage());
我正在使用 NetBeans
,当我运行时我的 NetBeans 项目运行正常,但是当我从 jar 运行它时,它无法运行。 然后,当我删除该代码时,我的 jar 会正常运行,并且框架中会出现 Java 图标。
谁能告诉我该代码可能有什么问题?
I want to ask about a problem in my project:
I have a class that extends JFrame
, and I want to change the Java icon on that frame to another icon using this code:
setIconImage(new ImageIcon(getClass().getResource("icon.PNG")).getImage());
I'm using NetBeans
, and when I run my project from NetBeans, it runs normally, but when I run it from the jar, it does not run.
Then, when I remove that code, my jar runs normally with the Java icon in the frame.
Can anyone can tell me what might be wrong with that code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行 jar 文件时,您无法使用以下方式访问文件:
您应该使用:
请参阅: 通过 getClass( ).getResource()
When running jar file you cannot access files by using:
You should use:
See: File loading by getClass().getResource()