How to get a test resource file?

simpatico picture simpatico · Apr 3, 2011 · Viewed 83.9k times · Source

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

Answer

AmanicA picture AmanicA · Apr 3, 2011

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 = Thread.currentThread().getContextClassLoader().getResource("mypackage/YourFile.csv");
File file = new File(url.getPath());
// where the file is in the classpath eg. <project>/src/test/resources/mypackage/YourFile.csv