Using Java to read a .jar manifest file

前端 未结 3 1671
渐次进展
渐次进展 2021-02-06 11:43

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 thi

相关标签:
3条回答
  • 2021-02-06 12:19

    The easiest way is to use JarURLConnection class :

    String className = getClass().getSimpleName() + ".class";
    String classPath = getClass().getResource(className).toString();
    if (!classPath.startsWith("jar")) {
        return DEFAULT_PROPERTY_VALUE;
    }
    
    URL url = new URL(classPath);
    JarURLConnection jarConnection = (JarURLConnection) url.openConnection();
    Manifest manifest = jarConnection.getManifest();
    Attributes attributes = manifest.getMainAttributes();
    return attributes.getValue(PROPERTY_NAME);
    

    Because in some cases ...class.getProtectionDomain().getCodeSource().getLocation(); gives path with vfs:/, so this should be handled additionally.

    Or, with ProtectionDomain:

    File file = new File(getClass().getProtectionDomain().getCodeSource().getLocation().toURI());
    if (file.isFile()) {
        JarFile jarFile = new JarFile(file);
        Manifest manifest = jarFile.getManifest();
        Attributes attributes = manifest.getMainAttributes();
        return attributes.getValue(PROPERTY_NAME);
    }
    
    0 讨论(0)
  • 2021-02-06 12:24

    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;
    
    0 讨论(0)
  • 2021-02-06 12:36

    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!

    0 讨论(0)
提交回复
热议问题