vote up 0 vote down star

Error: Unhandled exception type IOException.

File imgLoc = new File("player.png");
BufferedImage img = ImageIO.read(imgLoc);

How do I get a bufferedImage from a file location?

flag

1  
Are you sure that the path is correct? Try calling exists() on imgLoc to verify its existence before doing the ImageIO.read() – Matt Oct 14 at 22:32
1  
Can you post the stacktrace ? And is the file really a valid PNG ? – Brian Agnew Oct 14 at 22:34

2 Answers

vote up 3 vote down check

The cause of your problem is best determined by examining a stacktrace for the exception.

As a temporary measure, replace those two lines with the following:

File imgLoc = new File("player.png");
BufferedImage img;
try {
   img = ImageIO.read(imgLoc);
} catch (IOException ex) {
   System.err.println(ex.getMessage());
   ex.printStackTrace();
   throw ex;
}

to send some diagnostics to standard error. Run the modified app and post the resulting output.

Possible causes include:

  • The file name is wrong,
  • The file is not in the app's current directory,
  • The file is not readable by the app due to operating system access controls,
  • The file is readable but there is something wrong with its format,
  • etcetera.
link|flag
vote up 2 vote down

Does the file exist ? Are you by chance reading from an unexpected directory ?

Try File.exists() and/or File.canRead()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.