Class Zip

    • Constructor Detail

      • Zip

        public Zip()
    • Method Detail

      • getCompressor

        @Internal
        protected org.gradle.api.internal.file.copy.ZipCompressor getCompressor()
      • setEntryCompression

        public void setEntryCompression​(ZipEntryCompression entryCompression)
        Sets the compression level of the entries of the archive. If set to ZipEntryCompression.DEFLATED (the default), each entry is compressed using the DEFLATE algorithm. If set to ZipEntryCompression.STORED the entries of the archive are left uncompressed.
        Parameters:
        entryCompression - STORED or DEFLATED
      • setZip64

        public void setZip64​(boolean allowZip64)
        Enables building zips with more than 65535 files or bigger than 4GB.
        See Also:
        isZip64()
      • isZip64

        @Input
        public boolean isZip64()
        Whether the zip can contain more than 65535 files and/or support files greater than 4GB in size.

        The standard zip format has hard limits on file size and count. The Zip64 format extension practically removes these limits and is therefore required for building large zips.

        However, not all Zip readers support the Zip64 extensions. Notably, the ZipInputStream JDK class does not support Zip64 for versions earlier than Java 7. This means you should not enable this property if you are building JARs to be used with Java 6 and earlier runtimes.

      • getMetadataCharset

        @Nullable
        @Optional
        @Input
        public java.lang.String getMetadataCharset()
        The character set used to encode ZIP metadata like file names. Defaults to the platform's default character set.
        Returns:
        null if using the platform's default character set for ZIP metadata
        Since:
        2.14
      • setMetadataCharset

        public void setMetadataCharset​(java.lang.String metadataCharset)
        The character set used to encode ZIP metadata like file names. Defaults to the platform's default character set.
        Parameters:
        metadataCharset - the character set used to encode ZIP metadata like file names
        Since:
        2.14