Class JarFiles

java.lang.Object
io.smallrye.common.io.jar.JarFiles

public class JarFiles extends Object
Java 9+ variant of a JDK-specific class for working with JarFiles.
  • Method Details

    • create

      public static JarFile create(String name) throws IOException
      Returns an equivalent of new JarFile(name). On Java 8, that's exactly what is returned. On Java 9+, an equivalent that is multi-release-enabled is returned.
      Parameters:
      name - the file name (must not be null)
      Returns:
      an equivalent of new JarFile(name)
      Throws:
      IOException - if the operation fails
    • create

      public static JarFile create(String name, boolean verify) throws IOException
      Returns an equivalent of new JarFile(name, verify). On Java 8, that's exactly what is returned. On Java 9+, an equivalent that is multi-release-enabled is returned.
      Parameters:
      name - the file name (must not be null)
      verify - true to verify the JAR signatures
      Returns:
      an equivalent of new JarFile(name, verify)
      Throws:
      IOException - if the operation fails
    • create

      public static JarFile create(File file) throws IOException
      Returns an equivalent of new JarFile(file). On Java 8, that's exactly what is returned. On Java 9+, an equivalent that is multi-release-enabled is returned.
      Parameters:
      file - the file (must not be null)
      Returns:
      an equivalent of new JarFile(file)
      Throws:
      IOException - if the operation fails
    • create

      public static JarFile create(File file, boolean verify) throws IOException
      Returns an equivalent of new JarFile(file, verify). On Java 8, that's exactly what is returned. On Java 9+, an equivalent that is multi-release-enabled is returned.
      Parameters:
      file - the file (must not be null)
      verify - true to verify the JAR signatures
      Returns:
      an equivalent of new JarFile(file, verify)
      Throws:
      IOException - if the operation fails
    • isMultiRelease

      public static boolean isMultiRelease(JarFile jarFile)
      Returns true if this JarFile is a multi-release jar. On Java 8 this is done by browsing the manifest. On Java 9+, there is a isMultiRelease method.
      Parameters:
      jarFile - the JAR file (must not be null)
      Returns:
      true if this JarFile is a multi-release jar