Commit efd6b47e by Per Bothner

InflaterInputStream.java: New stub class.

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
parent 148017e0
package java.util.zip;
import java.io.*;
/** Placefolder - very incomplete. */
public class InflaterInputStream extends FilterInputStream
{
public InflaterInputStream(InputStream in)
{
super(in);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment