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 create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023