java.exe -jar,java.exe -jar的其他jar文件

当尝试使用`java -jar`命令运行包含依赖的jar文件时,遇到`NoClassDefFoundError`。问题在于`-cp`选项在`-jar`存在时被忽略。解决方案是在主jar的Manifest文件中指定`Class-Path`为依赖项,如:`Class-Path: dependency.jar`,然后使用`java -jar main.jar`运行程序。
摘要由CSDN通过智能技术生成

I run the following command:

C:\Projects\java -cp ./dependency.jar -jar ./dist/main.jar

Exception in thread "main" java.lang.NoClassDefFoundError: MyException

Caused by: java.lang.ClassNotFoundException: MyException

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)

Could not find the main class: Main. Program will exit.

MyException is inside dependency.jar. I also tried to replace -cp with -classpath. What do I do wrong?

解决方案

The -cp options is ignored if you use -jar. If you need extra jar-files on the class-path, you should specify this in the Manifest of main.jar like this:

Class-Path: dependency.jar

(Then you can run your program using java -jar main.jar.)

Related questions:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值