gpt4 book ai didi

Java 无法找到 javax/vecmath/Vector3d.class,即使类路径中有 jar

转载 作者:行者123 更新时间:2023-12-01 18:06:09 25 4
gpt4 key购买 nike

我的平台有ubuntu 18.04.3和openjdk版本“1.8.0_242”。

我正在运行某人的可执行 jar 文件,该文件引用 javax.vecmath.Vector3d,但 openjdk vm 为该类生成 NoClassDefFoundError,如下所示。 javax 类安装在我的系统上的/usr/share/java/vecmath.jar 中,我已验证它包含 javax.vecmath.Vector3d,因此我在“-cp”选项中提供该 jar:

% java -cp /usr/share/java/vecmath.jar -jar cameraCalc.jar

但我收到此错误:

java -cp /usr/share/java/vecmath-1.5.2.jar  -jar cameraCalc.jar 
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: [Ljavax/vecmath/Vector3d;
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
at java.lang.Class.getMethod0(Class.java:3018)
at java.lang.Class.getMethod(Class.java:1784)
at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
Caused by: java.lang.ClassNotFoundException: javax.vecmath.Vector3d
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:419)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352)
at java.lang.ClassLoader.loadClass(ClassLoader.java:352)
... 7 more

为什么 jvm 找不到该类,即使它位于作为“-cp”选项提供的 vecmath.jar 中?

谢谢汤姆

最佳答案

我的问题是由于运行的可执行 jar 文件不包含所有需要的类。来自文档:

When you use this option, the JAR file is the source of all user classes, and other user class path settings are ignored.

因此,在运行可执行 jar 文件时,“-cp”选项将被忽略。

关于Java 无法找到 javax/vecmath/Vector3d.class,即使类路径中有 jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60555054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com