HomeSort by relevance Sort by last modified time
    Searched full:zip1 (Results 1 - 1 of 1) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipOutputStreamTest.java 248 ZipOutputStream zip1 = new ZipOutputStream(stream1); local
249 zip1.putNextEntry(new ZipEntry("one"));
250 zip1.setMethod(ZipOutputStream.STORED);
251 zip1.setMethod(ZipEntry.STORED);
253 zip1.write(new byte[2]);
256 zip1.putNextEntry(new ZipEntry("Second"));
263 zip1.write(new byte[2]); // try to write data without entry
269 zip1.close();

Completed in 17 milliseconds