48

Not sure how this is possible. I re-read up on getResourceAsStream and it's always returning null.

InputStream source = this.getClass().getResourceAsStream("test.xml");

Right next to test.java in the Finder (using OS X and Eclipse) is test.xml

I can open it in TextWrangler and view it as existing with data inside.

This is a Junit test if it makes any difference. I went and looked at existing Junit tests on our system and I'm using it in the exactly same manner as a working example (as in where the file is located and the code itself).

What small difference could there be preventing I assume getClass() from returning the right path?

Captain Man
  • 6,270
  • 4
  • 44
  • 68
bobber205
  • 12,366
  • 26
  • 72
  • 98

13 Answers13

31

It's not finding the resource on the classpath. If you are using junit and maven make sure the resources are copied on the target/test-classes by adding <include> file directive on <testResource> section

You can also find out the location of your class in the file system by using

this.getClass().getResource(".")

and checking to see if the resource is there

surajz
  • 3,446
  • 3
  • 29
  • 37
  • 9
    `System.out.println(MyClass.class.getResource(".").getPath());` – jcalfee314 Jun 25 '13 at 20:10
  • 4
    System.out.println(this.getClass().getClassLoader().getResource(".").getPath()); – pherris Dec 12 '13 at 22:15
  • 1
    Yeah this helped! I could see what the folder was where things were being compiled, then I searched through that folder on the command line to see where my resources was, and loaded it relative to that.... Thanks! – Brad Parks May 19 '20 at 14:56
25

getResourceAsStream() is using the CLASSPATH, and as such it will load from wherever your classes are, not your source files.

I suspect you need to copy your XML to the same directory as your .class file.

Brian Agnew
  • 261,477
  • 36
  • 323
  • 432
23

In case you are using Maven, add this part to your pom.xml

<build>
    <testResources>
        <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
        </testResource>
    </testResources>
</build>

Your test.xml and other resource files must be located in src/test/resources

humkins
  • 8,358
  • 10
  • 53
  • 68
12

I always have problem with this method. Here are 2 links, which might be useful:

I always experiment with adding "/" at the beginning or "./".

From my experience the best method is using FileInputStream. There is only one thing to remember (while using FileInputStream with Eclipse), with default settings, your working directory is set to projects root. You can always check where is your current directory (and what relative paths you need)using this piece of code.

Sebastian Łaskawiec
  • 2,647
  • 14
  • 33
9

Assuming test.xml is located right under your test root source folder, do this:-

InputStream source = this.getClass().getClassLoader().getResourceAsStream("test.xml");
limc
  • 38,266
  • 19
  • 97
  • 142
3

I spent lot of time in this problem and it was missing me the following configuration: Right-click on an eclipse project and select Properties -> Java Build Path -> Source and edit Included row and add *.properties (*.fileExtension)

egroque
  • 57
  • 5
2

Put test.xml in the src/main/resources (or src/test/resources).

File file = ResourceUtils.getFile("classpath:test.xml");
String test = new String(Files.readAllBytes(file.toPath()));
Stuart McIntyre
  • 872
  • 6
  • 8
2

try using classloader

InputStream source = this.getClass().getClassLoader().getResourceAsStream("test.xml");
0

From Java API:

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

Find a resource of the specified name from the search path used to load classes. This method locates the resource through the system class loader

So the syntax will for instance be: ClassLoader.getSystemResource("test.xml").toString();

Works like a charm!

Espen
  • 49
  • 3
0

Try MyClass.getResourceAsStream().

Also try putting the test.xml in your classpath. For instance, in an Eclipse web project put text.xml in webcontent/WEB-INF/classes

Paul Croarkin
  • 14,110
  • 14
  • 78
  • 114
-1

You need to put the copy of your resource file to the test resources, in my example it is font file:

enter image description here

Then call next from your jUnit test:

 public static InputStream getFontAsStream() throws IOException {
        return Thread.currentThread().getContextClassLoader()
                    .getResourceAsStream("fonts/" + "FreeSans.ttf");
    }
Yuliia Ashomok
  • 7,793
  • 1
  • 58
  • 64
-1

Add the folder that your having your resource files in to the source folders of eclipse. Then the file should be automatically put in the bin directory.

-2

I had this problem with a Spring class. System.class.getResourceAsStream(...) worked in unit tests but not in Tomcat, Thread.currentThread().getContextClassLoader().getResourceAsStream(...) worked in Tomcat but not in unit tests.

Ulitimately I went with:

ClassUtils.getDefaultClassLoader()
    .getResourceAsStream("com/example/mail/templates/invoice-past-due.html"))

I also found that once I did it this way, I did not need to have the path starting with a slash.

Kip
  • 103,341
  • 86
  • 231
  • 263