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
This commit is contained in:
parent
148017e025
commit
efd6b47e7c
1 changed files with 12 additions and 0 deletions
12
libjava/java/util/zip/InflaterInputStream.java
Normal file
12
libjava/java/util/zip/InflaterInputStream.java
Normal file
|
@ -0,0 +1,12 @@
|
|||
package java.util.zip;
|
||||
import java.io.*;
|
||||
|
||||
/** Placefolder - very incomplete. */
|
||||
|
||||
public class InflaterInputStream extends FilterInputStream
|
||||
{
|
||||
public InflaterInputStream(InputStream in)
|
||||
{
|
||||
super(in);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue