2

I've seen many other people ask this question here and here, but it seems that I have done everything necessary yet I still get null when using the getResourceAsStream() call.

In netbeans I dragged my image into my package and it shows up in the folder in which the source code and .class files are held. So I have: src\com\myProject\ClassIMakeTheCallFrom.java src\com\myProject\MyImage.png

also a similar structure exists in: build\classes\com\myProject\ClassIMakeTheCallFrom.class build\classes\com\myProject\MyImage.png

However when I make the call:

System.out.println(dolphinWater.class.getClassLoader().getResourceAsStream("myImage.png"));

It comes out null. Am I missing something?

Community
  • 1
  • 1
BOMEz
  • 1,020
  • 14
  • 34
  • Is the image in a jar? just saying "myImage.png" to me would look in the root directory and not in your package. – Ali Aug 10 '11 at 20:40

1 Answers1

3

Either put the file directly in the src folder, not the package folder. Or use getResourceAsStream("com/myProject/myImage.png").

http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html#getResource(java.lang.String)

Pablo Fernandez
  • 279,434
  • 135
  • 377
  • 622
MarianP
  • 2,719
  • 18
  • 17