This examples shows how to get a path name or location from where our class is loaded.
package org.kodejava.lang;
public class CodeSourceLocation {
public static void main(String[] args) {
CodeSourceLocation csl = new CodeSourceLocation();
csl.getCodeSourceLocation();
}
private void getCodeSourceLocation() {
// The location from where the class is loaded.
System.out.println("Code source location: " +
getClass().getProtectionDomain().getCodeSource().getLocation());
}
}
The code snippet print the following output:
Code source location: file:/F:/Wayan/Kodejava/kodejava-example/kodejava-lang/target/classes/
Latest posts by Wayan (see all)
- How do I handle cookies using Jakarta Servlet API? - April 19, 2025
- How do I set response headers with HttpServletResponse? - April 18, 2025
- How do I apply gain and balance using FloatControl? - April 18, 2025