-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnzipAssets.java
85 lines (70 loc) · 1.99 KB
/
UnzipAssets.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import android.content.Context;
public class UnzipAssets
{
/**
*
* 解压Assets中的文件
*
* @param context 上下文对象
*
* @param assetName 压缩包文件名
*
* @param outputDirectory 输出目录
*
* @throws IOException
*/
public static void unZip(Context context, String assetName,String outputDirectory) throws IOException
{
// 创建解压目标目录
File file = new File(outputDirectory);
// 如果目标目录不存在,则创建
if (!file.exists())
{
file.mkdirs();
}
InputStream inputStream = null;
// 打开压缩文件
inputStream = context.getAssets().open(assetName);
ZipInputStream zipInputStream = new ZipInputStream(inputStream);
// 读取一个进入点
ZipEntry zipEntry = zipInputStream.getNextEntry();
// 使用1Mbuffer
byte[] buffer = new byte[1024 * 1024];
// 解压时字节计数
int count = 0;
// 如果进入点为空说明已经遍历完所有压缩包中文件和目录
while (zipEntry != null)
{
// 如果是一个目录
if (zipEntry.isDirectory())
{
// String name = zipEntry.getName();
// name = name.substring(0, name.length() - 1);
file = new File(outputDirectory + File.separator + zipEntry.getName());
file.mkdir();
}
else
{
// 如果是文件
file = new File(outputDirectory + File.separator+ zipEntry.getName());
// 创建该文件
file.createNewFile();
FileOutputStream fileOutputStream = new FileOutputStream(file);
while ((count = zipInputStream.read(buffer)) > 0)
{
fileOutputStream.write(buffer, 0, count);
}
fileOutputStream.close();
}
// 定位到下一个文件入口
zipEntry = zipInputStream.getNextEntry();
}
zipInputStream.close();
}
}