-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
1.2.0, 5.0
-
generic, sparc
-
generic, solaris_2.5
Name: sdC67446 Date: 08/19/98
The behavior for method
java.util.zip.ZipInputStream.skip(int n)
has been changed since jdk1.2beta4.
The spec for this method doesn't specify expected
behavior if 'n'<0.
Currently method throws unspecified IllegalArgumentException.
The java.util.zip.InflaterInputStream.skip(int n) has the same
problem.
Thus the jck1.2beta4 tests
api/java_util/zip/index.html#InflaterIStreamTest
api/java_util/zip/index.html#ZipIStreamTest2
now fail.
The doc says:
-------------------------------------------------------------
(ZipInputStream class)
public long skip(long n)
throws IOException
Skips specified number of bytes in the current ZIP entry.
Parameters:
n - the number of bytes to skip
Returns:
the actual number of bytes skipped
Throws:
ZipException - if a ZIP file error has occurred
IOException - if an I/O error has occurred
Overrides:
skip in class InflaterInputStream
------------------------------------------------------------
======================================================================