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

  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipOutputStreamTest.java 328 ZipOutputStream zip1 = new ZipOutputStream(stream1); local
329 zip1.putNextEntry(new ZipEntry("one"));
330 zip1.setMethod(ZipOutputStream.STORED);
331 zip1.setMethod(ZipEntry.STORED);
333 zip1.write(new byte[2]);
336 zip1.putNextEntry(new ZipEntry("Second"));
343 zip1.write(new byte[2]); // try to write data without entry
349 zip1.close();

Completed in 9 milliseconds