Package proguard.io

Class ZipOutput.LargeDataOutputStream

All Implemented Interfaces:
Closeable, DataOutput, Flushable, AutoCloseable
Enclosing class:
ZipOutput

public static class ZipOutput.LargeDataOutputStream extends 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.