Android解压ZIP
采用流的方式處理大文件
1.CheckedInputStream,這個(gè)是一個(gè)檢驗(yàn)流
CheckedInputStream cis = new CheckedInputStream(new FileInputStream(srcFile), new CRC32());
2.再將這個(gè)檢驗(yàn)流轉(zhuǎn)換成Zip輸入流:
ZipInputStream zis = new ZipInputStream(cis);
3.獲取zip流的實(shí)體:
while ((zipEntry = zis.getNextEntry()) != null)
4.然后用字節(jié)輸出流的方式:
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(destFile));
? ? ? ? int len;
? ? ? ? byte[] buff = new byte[DEFAULT_BUFF_SIZE];
? ? ? ? while ((len = zis.read(buff, 0 ,DEFAULT_BUFF_SIZE)) != -1) {
? ? ? ? ? ? bos.write(buff, 0, len);
? ? ? ? }
完整代碼:?public static File decompress(File srcFile, File destFile) throws Exception {
? ? ? ? while (destFile.exists()) {
? ? ? ? ? ? destFile = new File(destFile.getAbsolutePath()+"1");
? ? ? ? }
? ? ? ? CheckedInputStream cis = new CheckedInputStream(new FileInputStream(srcFile), new CRC32());
? ? ? ? ZipInputStream zis = new ZipInputStream(cis);
? ? ? ? doDecompress(destFile, zis);
? ? ? ? zis.close();
? ? ? ? return destFile;
? ? }
?
? ? private static void doDecompress(File destFile, ZipInputStream zis) throws Exception {
? ? ? ? ZipEntry zipEntry = null;
? ? ? ? while ((zipEntry = zis.getNextEntry()) != null) {
? ? ? ? ? ? String dir = destFile.getPath() + File.separator + zipEntry.getName();
? ? ? ? ? ? File dirFile = new File(dir);
? ? ? ? ? ? fileProber(dirFile);
? ? ? ? ? ? if (zipEntry.isDirectory()) {
? ? ? ? ? ? ? ? dirFile.mkdirs();
? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? doDecompressFile(dirFile, zis);
? ? ? ? ? ? }
? ? ? ? ? ? zis.closeEntry();
? ? ? ? }
? ? }
?
? ? private static void doDecompressFile(File destFile, ZipInputStream zis) throws Exception {
? ? ? ? BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(destFile));
? ? ? ? int len;
? ? ? ? byte[] buff = new byte[DEFAULT_BUFF_SIZE];
? ? ? ? while ((len = zis.read(buff, 0 ,DEFAULT_BUFF_SIZE)) != -1) {
? ? ? ? ? ? bos.write(buff, 0, len);
? ? ? ? }
? ? ? ? bos.close();
? ? }
?
?
原文鏈接:https://blog.csdn.net/howlaa/article/details/124384800
?
總結(jié)
以上是生活随笔為你收集整理的Android解压ZIP的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Fiddler抓包工具的三方证书安装
- 下一篇: SNV分支和合并、切换分支