Table of Contents

Java - Resource

About

A resource abstraction is implemented in Java because a resource could be:

Path

Example

getResourceAsStream

InputStream inputStream = MyClass.class.getResourceAsStream("/myDir/myResource.txt");
// Note that ''getResourceAsStream'' will the load the ''ZipFileSystem''

You can then transform it as a string.

Scanner s = new Scanner(inputStream).useDelimiter("\\A");
String result = s.hasNext() ? s.next() : "";

From Maven, the root is src/resources in test but also in main.

The first backslash is important.

From Maven, the root is src/resources in test but also in main. Just put your resource in this directory to avoid problem.

The relative path would only work if the resources are packaged in that class's JAR file because it will create a path as: mypackage/path/ResourceName