In a unit test I need to import a csv file. This is located in the resources folder, i.e. src/test/resources

link|improve this question

69% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Probably just useful if you have the file available, for example when doing unit tests - this will not load it out of a jar AFAIK.

URL url = getResourceAsUrl("/src/test/resources/YourFile.csv");
File file = new File(url.getPath());
link|improve this answer
what I was really looking for was abstraction from providing the path to the file, as in getResourceAsStream. Otherwise new File/getFile is more straightforward – simpatico Apr 4 '11 at 21:03
it works also with "YourFile.csv". – simpatico Jul 15 '11 at 19:18
feedback

You can access test resources using the current thread's classloader:

InputStream stream = Thread.currentThread().getContextClassLoader()
    .getResourceAsStream("YOURFILE.CSV");
link|improve this answer
but I want a java.io.File and not an InputStream. – simpatico Apr 3 '11 at 12:54
then use getClass().getResource("/src/test/resources/YourFile.csv"); download.oracle.com/javase/6/docs/api/java/lang/Class.html – Sean Apr 3 '11 at 13:43
so, FileUtils.toFile(Thread.currentThread().getClass().getResource("/src/test/resour‌​ces/YourFile.csv")); – simpatico Apr 4 '11 at 7:10
feedback
import org.apache.commons.io.FileUtils;
...
 final File dic = FileUtils.getFile("src","test", "resources", "csvFile");

since Apache Commons IO 2.1.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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