relative document loading in classpath
import java.io.IOException; import java.net.URL; public class Main { public static void main(String[] args) throws IOException { // relative document URL url = Main.class.getResource("docs/bar.txt"); } }
1. | getClass().getResourceAsStream | ||
2. | Try adding one or more item(s) to class path | ||
3. | Load resource file: absolute from the classpath | ||
4. | Load resource file: relative to the class location | ||
5. | Self ClassLoader |