constructor - FileInputStream
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
ZipEntry nesnelerini dolaşmamızı sağlar. Şöyle yaparız.
Şöyle yaparız.
File f = new File("C:\\test.zip")
InputStream inStream = new FileInputStream (f);
ZipInputStream zipInputStream = new ZipInputStream (inStream
);
Şöyle yaparız.InputStream inStream = new FileInputStream(path);
ZipInputStream zipInputStream =
= new ZipInputStream(new BufferedInputStream(inStream));
constructor - URLŞöyle yaparız.
URL jar = ...;
ZipInputStream zip = new ZipInputStream(jar.openStream());
close metoduŞöyle yaparız.
zipInputStream.close();
closeEntry metoduŞöyle yaparız.
ZipEntry ze = null;
while ((ze = zipInputStream.getNextEntry()) != null) {
...
zipInputStream.closeEntry();
}
getNextEntry metoduZipEntry nesnelerini dolaşmamızı sağlar. Şöyle yaparız.
ZipEntry entry;
while ((entry = zipInputStream.getNextEntry()) != null) {
...
}
Hiç yorum yok:
Yorum Gönder