简体   繁体   English

Java非常不寻常的类路径问题

[英]Java very unusual classpath problems

I'm trying to run an application that has native libraries and stuff using the following code: 我正在尝试使用以下代码运行具有本机库和内容的应用程序:

ProcessBuilder pb = new ProcessBuilder("javaw",
    "-classpath", 
    binDir + "polyrd.jar;" + binDir + "lwjgl.jar;" + binDir + "lwjgl_util.jar;",
    "-Djava.library.path=" + nativesDir,
    "monster860.polyrd.Polyrd");

I tried doing the equivalent in the command line, changing it to -cp, just using bindir instead of binDir + "polyrd.jar;" + binDir + "lwjgl.jar;" + binDir + "lwjgl_util.jar;" 我尝试在命令行中进行等效操作,仅使用bindir代替binDir + "polyrd.jar;" + binDir + "lwjgl.jar;" + binDir + "lwjgl_util.jar;"将其更改为-cp binDir + "polyrd.jar;" + binDir + "lwjgl.jar;" + binDir + "lwjgl_util.jar;" binDir + "polyrd.jar;" + binDir + "lwjgl.jar;" + binDir + "lwjgl_util.jar;" , and switching between java and javaw, but no matter what I did it gave me: ,并在java和javaw之间切换,但是无论我做什么,它都给了我:

java.lang.NoClassDefFoundError: monster860/polyrd/Polyrd
Caused by: java.lang.ClassNotFoundException: monster860.polyrd.Polyrd
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source) 

Can anyone help? 有人可以帮忙吗?

My operating system is Windows Vista. 我的操作系统是Windows Vista。 Yes, those files actually exist. 是的,这些文件实际上存在。

Here's how I got binDir and nativesDir : 这是我获得binDirnativesDir

public ProcessRunnable(File nativesDir, File binDir) {
        try {
            this.nativesDir = nativesDir.getCanonicalPath() + File.separator;
            this.binDir = binDir.getCanonicalPath() + File.separator;
        } catch (IOException e) {
        // TODO Auto-generated catch block
            e.printStackTrace();
        }
}

EDIT: Well, of course, it's has absolutely nothing to do with this, but the downloader downloading only the first 2 KB of the file. 编辑:嗯,当然,它与此完全无关,但是下载程序仅下载文件的前2 KB。

Since Java 6, "As a special convenience, a class path element containing a basename of * is considered equivalent to specifying a list of all the files in the directory with the extension .jar or .JAR ". 从Java 6开始,“为了特别方便,包含*的基本名称的类路径元素被认为等同于指定目录中所有扩展名为.jar.JAR的文件的列表”。 See the java command-line options for details. 有关详细信息,请参见java命令行选项。

Addendum: This example starts JFreeChart using the wildcard feature mentioned. 附录:本示例使用提到的通配符功能启动JFreeChart

import java.io.BufferedReader;
import java.io.InputStreamReader;

/** @see https://stackoverflow.com/a/15121864/230513 */
public class PBTest {

    private static final String baseDir = "/opt/jfreechart/";
    public static void main(String[] args) {
        ProcessBuilder pb = new ProcessBuilder("java", "-cp",
            baseDir + "lib/*:" + baseDir + "jfreechart-1.0.14-demo.jar",
            "demo.SuperDemo");
        pb.redirectErrorStream(true);
        try {
            Process p = pb.start();
            String s;
            // read from the process's combined stdout & stderr
            BufferedReader stdout = new BufferedReader(
                new InputStreamReader(p.getInputStream()));
            while ((s = stdout.readLine()) != null) {
                System.out.println(s);
            }
            System.out.println("Exit value: " + p.waitFor());
            p.getInputStream().close();
            p.getOutputStream().close();
            p.getErrorStream().close();
        } catch (Exception ex) {
            ex.printStackTrace(System.err);
        }
    }
}

Addendum: Here's the changes for Windows, which requires ; 附录:这是Windows的更改,需要进行; as a path separator. 作为路径分隔符。

private static final String baseDir = "C:/Users/Public/JFreeChart/";
public static void main(String[] args) {
    ProcessBuilder pb = new ProcessBuilder("java", "-cp",
        baseDir + "lib/*;" + baseDir + "jfreechart-1.0.14-demo.jar",
        "demo.SuperDemo");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM