开发者

Setting Java Classpath to Load a Class File

开发者 https://www.devze.com 2022-12-17 06:23 出处:网络
I\'m new to Java, and I\'m unsure how to access a class file located in a specific directory from a separate progra开发者_运维知识库m jar.

I'm new to Java, and I'm unsure how to access a class file located in a specific directory from a separate progra开发者_运维知识库m jar.

For example, I have an third party jar file located in /, which is supposed to load MyClass located in /mylib/MyClass.class, so I tried running:

java -jar mainprog.jar -classpath "/mylib" MyClass

but I'm getting the error:

Exception in thread "main" java.lang.NoClassDefFoundError: MyClass
Caused by: java.lang.ClassNotFoundException: MyClass
        at java.net.URLClassLoader$1.run(URLClassLoader.java:221)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:209)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:324)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:269)
        at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:337)

What am I doing wrong?


When you use "-jar" then only the Class-Path attribute defined in the META-INF/MANIFEST.MF file inside the jar file will influence the classpath.

It will also ignore the MyClass argument (or more specifically: interpret it as an argument to the main-class defined in the MANIFEST.MF).

If you simply want to call a class from that jar call it like this:

java -cp mainprog.jar:/mylib MyClass
// or using this one on windows:
java -cp mainprog.jar;/mylib MyClass


In your command line you are trying to run MyClass as a program, which based on your description is not what you want.

You need to figure out what the main class is that is used to execute the program in the jar. You could unpack the jar file with jar -xf mainprog.jar and look at the META-INF/MANIFEST.MF file. It should have an entry that indicates that the main class of the jar is (I can't remember the name of the entry right now).

After than change your command line to something like this:

java -classpath /mainprog.jar:/mylib package.name.to.jar.MainClass
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号