Could not find or load main class with a Jar File

后端 未结 16 1228
有刺的猬
有刺的猬 2020-12-01 09:09

I\'m trying to load a jar using

@echo off
java -jar Test.jar
pause

With the manifest of

Manifest-Version: 1.0
Main-Class:          


        
16条回答
  •  被撕碎了的回忆
    2020-12-01 09:35

    java -cp "full-path-of-your-jar" Main

    to run any other class having "public static void main" in some package,

    java -cp "full-path-of-your-jar" package1.package2.packages-hierarchy.ClassHavingMain

提交回复
热议问题