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.
car1.pngin/instead of/path/to/jar/car1.pngbecause your filename is "/car1.png", not "car1.png". – Puddingfox Mar 25 '11 at 3:26