How can app read its own Manifest.mf file ?

S

swebb99

Hi,

If I run an application from a jar how do I get a handle on the
standard Manifest file so I can read it.

It appears that there is a JarInputStream that can be used to get hold
of the Manifest Object but I'm not sure how I actually get a handle on
a stream for the correct jar file. I know a class file that is always
in the jar so I assume I can in someway use this to get hold of the
jar file being used and then open a stream to it ????

Any idea's ?

Thanks

Steve
 
A

Alan Krueger

It appears that there is a JarInputStream that can be used to get hold
of the Manifest Object but I'm not sure how I actually get a handle on
a stream for the correct jar file. I know a class file that is always
in the jar so I assume I can in someway use this to get hold of the
jar file being used and then open a stream to it ????

Take a look at the Class.getProtectionDomain,
ProtectionDomain.getCodeSource, and CodeSource.getLocation methods and
see if those help.
 
S

swebb99

Alan said:
Take a look at the Class.getProtectionDomain,
ProtectionDomain.getCodeSource, and CodeSource.getLocation methods and
see if those help.

Thanks Alan,

I had a look at some previous load resource code I wrote and it also
used the protection domain. Anyway I ended up using this code which
works for both standalone code from a JAR and WebStart code from a
JAR. Its rough by the way just to see if it works I realise it needs
tweaking ;)


final ProtectionDomain domain =
agentsupport.class.getProtectionDomain();
final CodeSource source = domain.getCodeSource();
URL url = source.getLocation();
if(url.toExternalForm().endsWith(".jar")) {
try {
JarInputStream jarStream = new JarInputStream(url.openStream(),
false);
Attributes attr = jarStream.getManifest().getMainAttributes();
Set set = attr.entrySet();
if(set != null) {
log.info("Manifest Attributes :");
Iterator it = set.iterator();
while(it.hasNext()) {
Map.Entry entry = (Map.Entry)it.next();
log.info(entry.getKey() + ": " + entry.getValue());
}
}

} catch (IOException e) {
}
}


The only problem I hit was when reading the Manifest from WebStart I
use the Maven 1.1 JNLP plugin and it dumps over the original Manifest
and offers no properties to define what should go in there :( Bugger
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,767
Messages
2,569,570
Members
45,045
Latest member
DRCM

Latest Threads

Top