Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Java to read a .jar manifest file

Tags:

java

jar

manifest

so I am trying to see if a .jar is valid or not, by checking some values in the mainfest file. What is the best way to read and parse the file using java? I thought of using this command to extract the file

jar -xvf anyjar.jar META-INF/MANIFEST.MF

But can I just do something like:

File manifest = Command.exec("jar -xvf anyjar.jar META-INF/MAINFEST.MF");

Then use some buffered reader or something to parse the lines of the file?

Thanks for any help...

like image 257
Kyle Avatar asked Oct 13 '13 15:10

Kyle


2 Answers

The problem with using the jar tool is that it requires the full JDK to be installed. Many users of Java will only have the JRE installed, which does not include jar.

Also, jar would have to be on the user's PATH.

So instead I would recommend using the proper API, like this:

Manifest m = new JarFile("anyjar.jar").getManifest();

That should actually be easier!

like image 200
Robin Green Avatar answered Sep 28 '22 11:09

Robin Green


The Package class at java.lang.Package has methods to do what you want. Here is an easy way to get manifest contents using your java code:

String t = this.getClass().getPackage().getImplementationTitle();
String v = this.getClass().getPackage().getImplementationVersion();

I put this into a static method in a shared utility class.The method accepts a class handle object as a parameter. This way, any class in our system can get their own manifest information when they need it. Obviously the method could be easily modified to return an array or hashmap of values.

call the method:

    String ver = GeneralUtils.checkImplVersion(this);

the method in a file called GeneralUtils.java:

public static String checkImplVersion(Object classHandle)
{
   String v = classHandle.getClass().getPackage().getImplementationVersion();
   return v;
}

And to get manifest fields-values other than those you can get via the Package class (e.g. your own Build-Date), you get the Main Attibutes and work through those, asking for the particular one you want. This following code is a slight mod from a similar question I found, probably here on SO. (I would like to credit it but I lost it - sorry.)

put this in a try-catch block, passing in a classHandle (the "this" or MyClass.class ) to the method. "classHandle" is of type Class:

  String buildDateToReturn = null;
  try
  {
     String path = classHandle.getProtectionDomain().getCodeSource().getLocation().getPath();
     JarFile jar = new JarFile(path);  // or can give a File handle
     Manifest mf = jar.getManifest();
     final Attributes mattr = mf.getMainAttributes();
     LOGGER.trace(" --- getBuildDate: "
           +"\n\t path:     "+ path
           +"\n\t jar:      "+ jar.getName()
           +"\n\t manifest: "+ mf.getClass().getSimpleName()
           );

     for (Object key : mattr.keySet()) 
     {
        String val = mattr.getValue((Name)key);
        if (key != null && (key.toString()).contains("Build-Date"))
        {
           buildDateToReturn = val;
        }
     }
  }
  catch (IOException e)
  { ... }

  return buildDateToReturn;
like image 31
Iceberg Avatar answered Sep 28 '22 09:09

Iceberg