在 jar 文件中使用 png
当我运行 jar 文件时,我收到 javax.imageio.IIOException: Can't read input file!
但是文件在在 jar 中!
代码:
try {imgs.put("player1" , ImageIO.read(new File("/car1.png")));}
catch (IOException e) {System.out.println(e);}
我尝试将 car1.png
放在 jar 文件中的任何位置,但它不起作用。
When I run my jar file, i get a javax.imageio.IIOException: Can't read input file!
But the file is in the jar!
the code:
try {imgs.put("player1" , ImageIO.read(new File("/car1.png")));}
catch (IOException e) {System.out.println(e);}
I have tried to put car1.png
everywhere in the jar file but its not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想这样做。
You probably want to do this instead.