
u * InflaterInputStream.java: New stub class. * ZipInputStream.java: New class. Partly works. * ZipConstants.java: Add two (internal) constants. * ZipEntry.java (timeFromDOS): New static (non-public) method. * ZipFile.java: Make it mostly work, except for compression. * ZipOutputStream.java: Start implementation. From-SVN: r26792
12 lines
212 B
Java
12 lines
212 B
Java
package java.util.zip;
|
|
import java.io.*;
|
|
|
|
/** Placefolder - very incomplete. */
|
|
|
|
public class InflaterInputStream extends FilterInputStream
|
|
{
|
|
public InflaterInputStream(InputStream in)
|
|
{
|
|
super(in);
|
|
}
|
|
}
|