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

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

 2010-11-05 00:54:57 来源:WEB开发网   
核心提示:"File must exist and ZIP file must have at least one entry.");}//获取压缩源所在父目录src = src.replaceAll("\\", "/");String prefixDir = null

"File must exist and ZIP file must have at least one entry.");

}

//获取压缩源所在父目录

src = src.replaceAll("\\", "/");

String prefixDir = null;

if (srcFile.isFile()) {

prefixDir = src.substring(0, src.lastIndexOf("/") + 1);

} else {

prefixDir = (src.replaceAll("/$", "") + "/");

}

//如果不是根目录

if (prefixDir.indexOf("/") != (prefixDir.length() - 1) && isCreateSrcDir) {

prefixDir = prefixDir.replaceAll("[^/]+/$", "");

}

//开始压缩

writeRecursive(zos, out, srcFile, prefixDir);

out.close();

// 注:校验和要在流关闭后才准备,一定要放在流被关闭后使用

System.out.println("Checksum: " + csum.getChecksum().getValue());

BufferedInputStream bi;

}

/**

* 使用 org.apache.tools.zip.ZipFile 解压文件,它与 java 类库中的

* java.util.zip.ZipFile 使用方式是一新的,只不过多了设置编码方式的

* 接口。

*

* 注,apache 没有提供 ZipInputStream 类,所以只能使用它提供的ZipFile

* 来读取压缩文件。

* @param archive 压缩包路径

* @param decompressDir 解压路径

* @throws IOException

* @throws FileNotFoundException

* @throws ZipException

*/

public static void readByApacheZipFile(String archive, String decompressDir)

throws IOException, FileNotFoundException, ZipException {

BufferedInputStream bi;

ZipFile zf = new ZipFile(archive, "GBK");//支持中文

Enumeration e = zf.getEntries();

while (e.hasMoreElements()) {

ZipEntry ze2 = (ZipEntry) e.nextElement();

String entryName = ze2.getName();

String path = decompressDir + "/" + entryName;

if (ze2.isDirectory()) {

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

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

Tags:Android 利用 Java

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