I'm able to read the Manifest file inside of my Java code, but I would also like to know if it's possible, and if it is, how to open up a JAR file from the command line and view its Manifest.MF file, or at the very least be able to specify a property of the Manifest.MF file and view it's value.
|
|
|
|
|
|
|
From here: You can extract selected entries from a jar file. For instance, if you only want to view the meta-inf/manifest.mf file, you can
Or using a backslash instead of a forward slash:
The entry names are case sensitive, and so the following will not extract anything:
Of course, you can always double-click the entry to view it in WinZip, fileroller, or other tools. |
||
|
|
|
Something like this should work:
|
||
|
|
|
|
the jar executable provided by JDK works the same way tar works on linux. jar xvf for example .... See jar options. |
||
|
|
|
|
Properties for runtime should not be defined in the manifest, they should be defined in separated config files that follow the Java Properties style. Assuming you are checking the manifest at runtime for whatever reason. But if you need to:
will inflate the manifest for your viewing pleasure. |
||
|
|
|
|
There is not a way with the Work-arounds:
|
||
|
|
|
|
it looks like the unzip command will help you -- it's available on most Un*x variants and is part of cygwin as well, if you are on Windows. |
||
|
|
