程序包 proguard.io
类 ZipOutput.LargeDataOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- java.io.DataOutputStream
-
- 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.DataOutputStreamThis 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.
-
-
构造器概要
构造器 构造器 说明 LargeDataOutputStream(java.io.OutputStream out)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 longgetLongSize()voidwrite(byte[] b)voidwrite(int b)
-
-
-
方法详细资料
-
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
-
-