Answers for "java how to find file in folder the .jar is in"

3

java get location of jar file

//this worked for me
File jarDir = new File(ClassLoader.getSystemClassLoader().getResource(".").toURI());

//this didn't work for me but it is often suggested
File jar = new File(MyClass.class.getProtectionDomain().getCodeSource().getLocation().toURI());
Posted by: Guest on June-24-2020

Code answers related to "java how to find file in folder the .jar is in"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language