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

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

 2010-11-05 00:54:57 来源:WEB开发网   
核心提示:File decompressDirFile = new File(path);if (!decompressDirFile.exists()) {decompressDirFile.mkdirs();}} else {System.out.println("正在创建解压文件 - " + entry

File decompressDirFile = new File(path);

if (!decompressDirFile.exists()) {

decompressDirFile.mkdirs();

}

} else {

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

String fileDir = path.substring(0, path.lastIndexOf("/"));

File fileDirFile = new File(fileDir);

if (!fileDirFile.exists()) {

fileDirFile.mkdirs();

}

BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(

decompressDir + "/" + entryName));

bi = new BufferedInputStream(zf.getInputStream(ze2));

byte[] readContent = new byte[1024];

int readCount = bi.read(readContent);

while (readCount != -1) {

bos.write(readContent, 0, readCount);

readCount = bi.read(readContent);

}

bos.close();

}

}

zf.close();

}

/**

* 使用 java api 中的 ZipInputStream 类解压文件,但如果压缩时采用了

* org.apache.tools.zip.ZipOutputStream时,而不是 java 类库中的

* java.util.zip.ZipOutputStream时,该方法不能使用,原因就是编码方

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

* 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文件的解压缩实质上就是从输入流中读取数据):

上一页  2 3 4 5 6 7 8 9 10 11 12  下一页

Tags:Android 利用 Java

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