我一直在試圖運行從jar文件的工具軟件,但它一直打印出來:Jar文件無法加載或找到主類
「無法找到或加載主類...」。
我試圖解決這個問題,使用這個thread的信息,但似乎都是無用的。說實話,因爲這是一個微不足道的問題,我越來越絕望。
不管怎麼說,我所做的:
Main-Class: com.test.Test
我的清單屬性:
jar cfm test.jar manifest.txt <full_path>/out/com/test/*.class
這是什麼打包成jar文件(該文件的Test.class)
測試等級:
package com.test;
public class Test {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
你是如何試圖調用它的? – KevinO
它看起來並沒有正確打包你的jar(你不保留文件夾結構)。我想你想'jar cfm test.jar manifest.txt/out /' –
然後用'java -jar'或'java -cp'運行它嗎? – fukanchik