Load resource file: absolute from the classpath : Class Path « Development Class « Java






Load resource file: absolute from the classpath

 

import java.io.IOException;
import java.net.URL;

public class Main {
  public static void main(String[] args) throws IOException {
    // absolute from the classpath
    URL url = Main.class.getResource("/mypackage/foo.txt");
  }
}

   
  








Related examples in the same category

1.getClass().getResourceAsStream
2.Try adding one or more item(s) to class path
3.Load resource file: relative to the class location
4.relative document loading in classpath
5.Self ClassLoader