程序包 proguard.io

类 ZipWriter

  • 所有已实现的接口:
    java.lang.AutoCloseable, DataEntryWriter

    public class ZipWriter
    extends java.lang.Object
    implements DataEntryWriter
    This DataEntryWriter sends data entries to the zip files specified by their parents.
    • 构造器概要

      构造器 
      构造器 说明
      ZipWriter​(DataEntryWriter dataEntryWriter)
      Creates a new ZipWriter that compresses all zip entries.
      ZipWriter​(StringMatcher uncompressedFilter, int uncompressedAlignment, boolean useZip64, int modificationTime, byte[] header, DataEntryWriter dataEntryWriter)
      Creates a new ZipWriter.
      ZipWriter​(StringMatcher uncompressedFilter, int uncompressedAlignment, boolean useZip64, int modificationTime, DataEntryWriter dataEntryWriter)
      Creates a new ZipWriter.
      ZipWriter​(StringMatcher uncompressedFilter, int uncompressedAlignment, boolean useZip64, StringMatcher extraUncompressedAlignmentFilter, int extraUncompressedAlignment, int modificationTime, byte[] header, DataEntryWriter dataEntryWriter)
      Creates a new ZipWriter.
      ZipWriter​(StringMatcher uncompressedFilter, int uncompressedAlignment, boolean useZip64, StringMatcher extraUncompressedAlignmentFilter, int extraUncompressedAlignment, int modificationTime, DataEntryWriter dataEntryWriter)
      Creates a new ZipWriter.
      ZipWriter​(StringMatcher uncompressedFilter, int uncompressedAlignment, StringMatcher extraUncompressedAlignmentFilter, int extraUncompressedAlignment, int modificationTime, byte[] header, DataEntryWriter dataEntryWriter)
      Creates a new ZipWriter.
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      void close()
      Finishes writing all data entries.
      boolean createDirectory​(DataEntry dataEntry)
      Creates a directory.
      java.io.OutputStream createOutputStream​(DataEntry dataEntry)
      Creates a new output stream for writing data.
      protected ZipOutput createZipOutput​(java.io.OutputStream outputStream, byte[] header, int uncompressedAlignment, boolean useZip64, java.lang.String comment)
      Creates a zip output with the given header and parameters.
      void println​(java.io.PrintWriter pw, java.lang.String prefix)
      Prints out the structure of the data entry writer.
      boolean sameOutputStream​(DataEntry dataEntry1, DataEntry dataEntry2)
      Returns whether the two given data entries would result in the same output stream.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 字段详细资料

      • currentZipOutput

        public ZipOutput currentZipOutput
    • 构造器详细资料

      • ZipWriter

        public ZipWriter​(DataEntryWriter dataEntryWriter)
        Creates a new ZipWriter that compresses all zip entries.
        参数:
        dataEntryWriter - the data entry writer that can provide output streams for the zip archives.
      • ZipWriter

        public ZipWriter​(StringMatcher uncompressedFilter,
                         int uncompressedAlignment,
                         boolean useZip64,
                         int modificationTime,
                         DataEntryWriter dataEntryWriter)
        Creates a new ZipWriter.
        参数:
        uncompressedFilter - an optional filter for files that should not be compressed.
        uncompressedAlignment - the desired alignment for the data of uncompressed entries.
        useZip64 - Whether to write out the archive in zip64 format.
        modificationTime - the modification date and time of the zip entries, in DOS format.
        dataEntryWriter - the data entry writer that can provide output streams for the zip archives.
      • ZipWriter

        public ZipWriter​(StringMatcher uncompressedFilter,
                         int uncompressedAlignment,
                         boolean useZip64,
                         StringMatcher extraUncompressedAlignmentFilter,
                         int extraUncompressedAlignment,
                         int modificationTime,
                         DataEntryWriter dataEntryWriter)
        Creates a new ZipWriter.
        参数:
        uncompressedFilter - an optional filter for files that should not be compressed.
        uncompressedAlignment - the desired alignment for the data of uncompressed entries.
        useZip64 - Whether to write out the archive in zip64 format.
        extraUncompressedAlignmentFilter - an optional filter for files that should not be compressed and use a different alignment.
        extraUncompressedAlignment - the desired alignment for the data of entries matching extraAlignmentFilter.
        modificationTime - the modification date and time of the zip entries, in DOS format.
        dataEntryWriter - the data entry writer that can provide output streams for the zip archives.
      • ZipWriter

        public ZipWriter​(StringMatcher uncompressedFilter,
                         int uncompressedAlignment,
                         boolean useZip64,
                         int modificationTime,
                         byte[] header,
                         DataEntryWriter dataEntryWriter)
        Creates a new ZipWriter.
        参数:
        uncompressedFilter - an optional filter for files that should not be compressed.
        uncompressedAlignment - the desired alignment for the data of uncompressed entries.
        useZip64 - Whether to write out the archive in zip64 format.
        modificationTime - the modification date and time of the zip entries, in DOS format.
        dataEntryWriter - the data entry writer that can provide output streams for the zip archives.
      • ZipWriter

        public ZipWriter​(StringMatcher uncompressedFilter,
                         int uncompressedAlignment,
                         StringMatcher extraUncompressedAlignmentFilter,
                         int extraUncompressedAlignment,
                         int modificationTime,
                         byte[] header,
                         DataEntryWriter dataEntryWriter)
        Creates a new ZipWriter.
        参数:
        uncompressedFilter - an optional filter for files that should not be compressed.
        uncompressedAlignment - the desired alignment for the data of uncompressed entries.
        extraUncompressedAlignmentFilter - an optional filter for files that should not be compressed and use a different alignment.
        extraUncompressedAlignment - the desired alignment for the data of entries matching extraAlignmentFilter.
        modificationTime - the modification date and time of the zip entries, in DOS format.
        dataEntryWriter - the data entry writer that can provide output streams for the zip archives.
      • ZipWriter

        public ZipWriter​(StringMatcher uncompressedFilter,
                         int uncompressedAlignment,
                         boolean useZip64,
                         StringMatcher extraUncompressedAlignmentFilter,
                         int extraUncompressedAlignment,
                         int modificationTime,
                         byte[] header,
                         DataEntryWriter dataEntryWriter)
        Creates a new ZipWriter.
        参数:
        uncompressedFilter - an optional filter for files that should not be compressed.
        uncompressedAlignment - the desired alignment for the data of uncompressed entries.
        useZip64 - Whether to write out the archive in zip64 format.
        extraUncompressedAlignmentFilter - an optional filter for files that should not be compressed and use a different alignment.
        extraUncompressedAlignment - the desired alignment for the data of entries matching extraAlignmentFilter.
        modificationTime - the modification date and time of the zip entries, in DOS format.
        dataEntryWriter - the data entry writer that can provide output streams for the zip archives.
    • 方法详细资料

      • createDirectory

        public boolean createDirectory​(DataEntry dataEntry)
                                throws java.io.IOException
        从接口复制的说明: DataEntryWriter
        Creates a directory.
        指定者:
        createDirectory 在接口中 DataEntryWriter
        参数:
        dataEntry - the data entry for which the directory is to be created.
        返回:
        whether the directory has been created.
        抛出:
        java.io.IOException
      • sameOutputStream

        public boolean sameOutputStream​(DataEntry dataEntry1,
                                        DataEntry dataEntry2)
                                 throws java.io.IOException
        从接口复制的说明: DataEntryWriter
        Returns whether the two given data entries would result in the same output stream.
        指定者:
        sameOutputStream 在接口中 DataEntryWriter
        参数:
        dataEntry1 - the first data entry.
        dataEntry2 - the second data entry.
        抛出:
        java.io.IOException
      • createOutputStream

        public java.io.OutputStream createOutputStream​(DataEntry dataEntry)
                                                throws java.io.IOException
        从接口复制的说明: DataEntryWriter
        Creates a new output stream for writing data. The caller is responsible for closing the stream.
        指定者:
        createOutputStream 在接口中 DataEntryWriter
        参数:
        dataEntry - the data entry for which the output stream is to be created.
        返回:
        the output stream. The stream may be null to indicate that the data entry should not be written.
        抛出:
        java.io.IOException
      • close

        public void close()
                   throws java.io.IOException
        从接口复制的说明: DataEntryWriter
        Finishes writing all data entries.

        Implementations typically create graphs of writers that can split and merge again, possibly even with cycles.

        For splits and merges, implementations need to be idempotent; once closed, subsequent attempts to close a writer have no effect. If needed, the wrapper NonClosingDataEntryWriter can avoid closing a branch prematurely.

        For cycles, implementations must perform any custom behavior, then delegate DataEntryWriter.close() invocations, and only finally clean up. It is possible that delegates call DataEntryWriter.createOutputStream(DataEntry) while DataEntryWriter.close() is in progress.

        指定者:
        close 在接口中 java.lang.AutoCloseable
        指定者:
        close 在接口中 DataEntryWriter
        抛出:
        java.io.IOException
      • println

        public void println​(java.io.PrintWriter pw,
                            java.lang.String prefix)
        从接口复制的说明: DataEntryWriter
        Prints out the structure of the data entry writer.
        指定者:
        println 在接口中 DataEntryWriter
        参数:
        pw - the print stream to which the structure should be printed.
        prefix - a prefix for every printed line.
      • createZipOutput

        protected ZipOutput createZipOutput​(java.io.OutputStream outputStream,
                                            byte[] header,
                                            int uncompressedAlignment,
                                            boolean useZip64,
                                            java.lang.String comment)
                                     throws java.io.IOException
        Creates a zip output with the given header and parameters.
        抛出:
        java.io.IOException