程序包 proguard.io

类 ZipOutput.LargeDataOutputStream

  • 所有已实现的接口:
    java.io.Closeable, java.io.DataOutput, java.io.Flushable, java.lang.AutoCloseable
    封闭类:
    ZipOutput

    public static class ZipOutput.LargeDataOutputStream
    extends java.io.DataOutputStream
    This output stream is mostly identical to DataOutputStream, except it stores the amount of bytes written so far in a long instead of an int. This makes sure the count is correct, even when writing out more than 1 << 31 bytes.
    • 字段概要

      • 从类继承的字段 java.io.FilterOutputStream

        out
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      long getLongSize()  
      void write​(byte[] b)  
      void write​(int b)  
      • 从类继承的方法 java.io.DataOutputStream

        flush, size, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
      • 从类继承的方法 java.io.FilterOutputStream

        close
      • 从类继承的方法 java.io.OutputStream

        nullOutputStream
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • LargeDataOutputStream

        public LargeDataOutputStream​(java.io.OutputStream out)
    • 方法详细资料

      • getLongSize

        public long getLongSize()
        返回:
        the amount of bytes written to the output stream so far.
      • write

        public void write​(int b)
                   throws java.io.IOException
        指定者:
        write 在接口中 java.io.DataOutput
        覆盖:
        write 在类中 java.io.DataOutputStream
        抛出:
        java.io.IOException
      • write

        public void write​(byte[] b)
                   throws java.io.IOException
        指定者:
        write 在接口中 java.io.DataOutput
        覆盖:
        write 在类中 java.io.FilterOutputStream
        抛出:
        java.io.IOException