Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a unit test that needs to work with XML file located in src/test/resources/abc.xml. What is the easiest way just to get the content of the file into String?

share|improve this question
2  
possible duplicate of What is simplest way to read a file into String in java – Nikita Rybak Oct 8 '10 at 14:12
2  
@Nikita, was going to vote to close despite my answer, but those questions don't mention getResourceAsStream() which I believe is the right approach for the OP's question. – Kirk Woll Oct 8 '10 at 14:17
@kirk, getResourceAsStream caches the file in the classloader. That is unnecessary. – Thorbjørn Ravn Andersen Oct 8 '10 at 16:13
@Thorbjørn, where is your reference for that? In any case, it certainly is convenient and portable which may in fact be necessary. – Kirk Woll Oct 8 '10 at 17:12

3 Answers

up vote 9 down vote accepted

Finally I found a neat solution:

import org.apache.commons.io.FileUtils;
public class FooTest {
  @Test public void shouldWork() throws Exception {
    String xml = FileUtils.readFileToString(
        FileUtils.toFile(
            this.getClass().getResource("/abc.xml")
        )
    );
  }
}

Works perfectly.

share|improve this answer
1  
Can do this as simply without external library dependency. – Glen Best Nov 5 '12 at 6:35

First make sure that abc.xml is being copied to your output directory. Then you should use getResourceAsStream():

InputStream inputStream = 
    Thread.currentThread().getContextClassLoader().getResourceAsStream("test/resources/abc.xml");

Once you have the InputStream, you just need to convert it into a string. This resource spells it out: http://www.kodejava.org/examples/266.html. However, I'll excerpt the relevent code:

public String convertStreamToString(InputStream is) throws IOException {
    if (is != null) {
        Writer writer = new StringWriter();

        char[] buffer = new char[1024];
        try {
            Reader reader = new BufferedReader(
                    new InputStreamReader(is, "UTF-8"));
            int n;
            while ((n = reader.read(buffer)) != -1) {
                writer.write(buffer, 0, n);
            }
        } finally {
            is.close();
        }
        return writer.toString();
    } else {        
        return "";
    }
}
share|improve this answer
What is your output directory? – yegor256 Oct 8 '10 at 14:42
@Vincenzo, usually "classes" though perhaps "bin". i.e. wherever you are compiling your classes to. Most IDEs already copy resource files such as xml files to that directory so you should probably take a quick peak and see if it's already there. – Kirk Woll Oct 8 '10 at 14:47
Looks like too much code in your case. I would better use some apache.commons.io.* class for file reading, and java.lang.Class.getResource(). What do you think? – yegor256 Oct 11 '10 at 11:39

Assume UTF8 encoding in file - if not, just leave out the "UTF8" argument & will use the default charset for the underlying operating system in each case.

Quick way in JSE 6 - Simple & no 3rd party library!

import java.io.File;
public class FooTest {
  @Test public void readXMLToString() throws Exception {
        java.net.URL url = MyClass.class.getResource("test/resources/abc.xml");
        //Z means: "The end of the input but for the final terminator, if any"
        String xml = new java.util.Scanner(new File(url),"UTF8").useDelimiter("\\Z").next();
  }
}

Quick way in JSE 7 (the future)

public class FooTest {
  @Test public void readXMLToString() throws Exception {
        java.net.URL url = MyClass.class.getResource("test/resources/abc.xml");
        String xml = new String(java.nio.file.Files.readAllBytes(resPath), "UTF8"); 
  }

Neither intended for enormous files though

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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