14

我正在尝试获取 Runnable JAR 文件的运行位置。我试着做

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

但这会返回:

C:\Users\Kevin\Desktop/server/Server

而 JAR 文件位于

C:\Users\Kevin\Desktop

我也试过做

return new file(Server.class.getProtectionDomain().getCodeSource().getLocation().getPath());

但这会返回:

C:\Users\Kevin\Desktop\server.jar/server/Server

所以基本上我想要没有文件名而不是 ClassPath 的 JAR 文件的路径。

有什么办法吗?

4

4 回答 4

29

更新

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

正确的方法应该是ClassLoader

File jarDir = new File(ClassLoader.getSystemClassLoader().getResource(".").getPath());
System.out.println(jarDir.getAbsolutePath());

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


旧答案

这应该工作

File f = new File(System.getProperty("java.class.path"));
File dir = f.getAbsoluteFile().getParentFile();
String path = dir.toString();

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

C:\Users\User01\Documents\app1\dist\JavaApplication1.jar

它返回

C:\Users\User01\Documents\app1\dist
于 2013-03-12T11:32:08.653 回答
20

这是我计算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());
    }
}
于 2014-01-06T15:34:09.000 回答
2

在我终于找到一个可行的解决方案之前,我不得不搞砸了很多。
可能jarLocation带有前缀file:\jar:file\,可以使用删除String#substring()

URL jarLocationUrl = MyClass.class.getProtectionDomain().getCodeSource().getLocation();
String jarLocation = new File(jarLocationUrl.toString()).getParent();
于 2016-08-30T13:31:54.133 回答
1

如果你知道的话

file(Server.class.getProtectionDomain().getCodeSource().getLocation().getPath());

返回

C:\Users\Kevin\Desktop\server.jar/server/Server

而且您知道您的 Jar 名称是 server.jar 或任何 .jar 文件,您的意图是获取 C:\Users\Kevin\Desktop ,直接的方法是进行字符串操作。

使用检索到的输出,基于 File.separator 对字符串进行标记并构造路径(通过将字符串与 File.separator 连接起来),直到获得包含 .jar 的标记

于 2013-03-12T11:28:05.670 回答