“Java Get Jar Path” Código de respuesta

Java Obtener la ubicación del archivo JAR

//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());
Rapha149

Java Get Jar Path

return new File(MyClass.class.getProtectionDomain().getCodeSource().getLocation()
    .toURI()).getPath();
Homeless Hawk

Respuestas similares a “Java Get Jar Path”

Preguntas similares a “Java Get Jar Path”

Más respuestas relacionadas con “Java Get Jar Path” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código