WEB开发网
开发学院手机开发Android 开发 Android 利用Java实现压缩与解压缩(zip、gzip)支... 阅读

Android 利用Java实现压缩与解压缩(zip、gzip)支持中文路径

 2010-11-05 00:54:57 来源:WEB开发网   
核心提示:* 式不一致导致,运行时会抛如下异常:* java.lang.IllegalArgumentException* at java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:290)** 当然,Android 利用Java实现压缩与解压缩(zip、

* 式不一致导致,运行时会抛如下异常:

* java.lang.IllegalArgumentException

* at java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:290)

*

* 当然,如果压缩包使用的是java类库的java.util.zip.ZipOutputStream

* 压缩而成是不会有问题的,但它不支持中文

*

* @param archive 压缩包路径

* @param decompressDir 解压路径

* @throws FileNotFoundException

* @throws IOException

*/

public static void readByZipInputStream(String archive, String decompressDir)

throws FileNotFoundException, IOException {

BufferedInputStream bi;

//----解压文件(ZIP文件的解压缩实质上就是从输入流中读取数据):

System.out.println("开始读压缩文件");

FileInputStream fi = new FileInputStream(archive);

CheckedInputStream csumi = new CheckedInputStream(fi, new CRC32());

ZipInputStream in2 = new ZipInputStream(csumi);

bi = new BufferedInputStream(in2);

java.util.zip.ZipEntry ze;//压缩文件条目

//遍历压缩包中的文件条目

while ((ze = in2.getNextEntry()) != null) {

String entryName = ze.getName();

if (ze.isDirectory()) {

System.out.println("正在创建解压目录 - " + entryName);

File decompressDirFile = new File(decompressDir + "/" + entryName);

if (!decompressDirFile.exists()) {

decompressDirFile.mkdirs();

}

} else {

System.out.println("正在创建解压文件 - " + entryName);

BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(

decompressDir + "/" + entryName));

byte[] buffer = new byte[1024];

int readCount = bi.read(buffer);

while (readCount != -1) {

bos.write(buffer, 0, readCount);

readCount = bi.read(buffer);

}

上一页  8 9 10 11 12 13 14 15  下一页

Tags:Android 利用 Java

编辑录入:coldstar [复制链接] [打 印]
赞助商链接