8
2
|
Is it possible to run a Java app which doesn't contain
MANIFEST.MF file? Of course, there's static main method,just lacks manifest file. And the app is depending on several external .jar files. |
5
|
It is possible, you can specify the class to run from the command line:
Same question here:
| ||
add a comment
|
5
|
You can also add the manifest, with the following command:
| ||
2
|
Of course! Just use this:
| ||
0
|
Yes , use this
java -cp myJar.jar package.className
|
No comments:
Post a Comment