获取JAR文件的位置

Sna*_*ybo 13 java directory jar class path

我正在尝试从运行Runnable JAR文件获取该位置.我试过了

try {
    String path = new java.io.File(".").getCanonicalPath();
} catch (IOException e) {
    e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)

但那回归:

C:\Users\Kevin\Desktop/server/Server
Run Code Online (Sandbox Code Playgroud)

而JAR文件位于

C:\Users\Kevin\Desktop
Run Code Online (Sandbox Code Playgroud)

我也尝试过

return new file(Server.class.getProtectionDomain().getCodeSource().getLocation().getPath());
Run Code Online (Sandbox Code Playgroud)

但那回归:

C:\Users\Kevin\Desktop\server.jar/server/Server
Run Code Online (Sandbox Code Playgroud)

所以我基本上希望JAR文件的路径没有文件名而不是ClassPath.

这样做的任何方式?

Bac*_*ash 27

更新

由于它在某些测试用例中不起作用,我将更新答案.

正确的方法应该是ClassLoader:

File jarDir = new File(ClassLoader.getSystemClassLoader().getResource(".").getPath());
System.out.println(jarDir.getAbsolutePath());
Run Code Online (Sandbox Code Playgroud)

在各种类路径上测试,输出是正确的.


老答案

这应该工作

File f = new File(System.getProperty("java.class.path"));
File dir = f.getAbsoluteFile().getParentFile();
String path = dir.toString();
Run Code Online (Sandbox Code Playgroud)

它对我有用,我的程序是:

C:\Users\User01\Documents\app1\dist\JavaApplication1.jar
Run Code Online (Sandbox Code Playgroud)

它回来了

C:\Users\User01\Documents\app1\dist
Run Code Online (Sandbox Code Playgroud)

  • 只有当classpath只包含一个条目时,这才有效. (5认同)
  • @dbw类路径可以是jar文件,zip文件和目录的列表,在Unix或';'中用':'分隔 在Windows中.很明显,`new File("foo.jar:bar /:baz.jar")`不会起作用. (5认同)
  • getResource(".") 在我的例子中返回 null (3认同)

Zwe*_*ren 18

这是我计算jar目录的版本

/**
 * Compute the absolute file path to the jar file.
 * The framework is based on http://stackoverflow.com/a/12733172/1614775
 * But that gets it right for only one of the four cases.
 * 
 * @param aclass A class residing in the required jar.
 * 
 * @return A File object for the directory in which the jar file resides.
 * During testing with NetBeans, the result is ./build/classes/,
 * which is the directory containing what will be in the jar.
 */
public static File getJarDir(Class aclass) {
    URL url;
    String extURL;      //  url.toExternalForm();

    // get an url
    try {
        url = aclass.getProtectionDomain().getCodeSource().getLocation();
          // url is in one of two forms
          //        ./build/classes/   NetBeans test
          //        jardir/JarName.jar  froma jar
    } catch (SecurityException ex) {
        url = aclass.getResource(aclass.getSimpleName() + ".class");
        // url is in one of two forms, both ending "/com/physpics/tools/ui/PropNode.class"
        //          file:/U:/Fred/java/Tools/UI/build/classes
        //          jar:file:/U:/Fred/java/Tools/UI/dist/UI.jar!
    }

    // convert to external form
    extURL = url.toExternalForm();

    // prune for various cases
    if (extURL.endsWith(".jar"))   // from getCodeSource
        extURL = extURL.substring(0, extURL.lastIndexOf("/"));
    else {  // from getResource
        String suffix = "/"+(aclass.getName()).replace(".", "/")+".class";
        extURL = extURL.replace(suffix, "");
        if (extURL.startsWith("jar:") && extURL.endsWith(".jar!"))
            extURL = extURL.substring(4, extURL.lastIndexOf("/"));
    }

    // convert back to url
    try {
        url = new URL(extURL);
    } catch (MalformedURLException mux) {
        // leave url unchanged; probably does not happen
    }

    // convert url to File
    try {
        return new File(url.toURI());
    } catch(URISyntaxException ex) {
        return new File(url.getPath());
    }
}
Run Code Online (Sandbox Code Playgroud)