package com.maidong.utils;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;
import org.apache.http.protocol.HTTP;
public class ZipUtils {
private static final int BUFF_SIZE = 1024 * 1024; // 1M Byte
/**
* 批量压缩文件(夹)
*
* @param resFileList
* 要压缩的文件(夹)列表
* @param zipFile
* 生成的压缩文件
* @throws IOException
* 当压缩过程出错时抛出
*/
public static void zipFiles(Collection<File> resFileList, File zipFile) throws IOException {
ZipOutputStream zipout = null;
try {
zipout = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFile), BUFF_SIZE));
for (File resFile : resFileList) {
zipFile(resFile, zipout, "");
}
} finally {
if (zipout != null)
zipout.close();
}
}
/**
* 批量压缩文件(夹)
*
* @param resFileList
* 要压缩的文件(夹)列表
* @param zipFile
* 生成的压缩文件
* @param comment
* 压缩文件的注释
* @throws IOException
* 当压缩过程出错时抛出
*/
public static void zipFiles(Collection<File> resFileList, File zipFile, String comment) throws IOException {
ZipOutputStream zipout = null;
try {
zipout = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFile), BUFF_SIZE));
for (File resFile : resFileList) {
zipFile(resFile, zipout, "");
}
zipout.setComment(comment);
} finally {
if (zipout != null)
zipout.close();
}
}
/**
* 解压缩一个文件
*
* @param zipFile
* 压缩文件
* @param folderPath
* 解压缩的目标目录
* @throws IOException
* 当解压缩过程出错时抛出
*/
public static void upZipFile(File zipFile, String folderPath) throws ZipException, IOException {
File desDir = new File(folderPath);
if (!desDir.exists()) {
desDir.mkdirs();
}
ZipFile zf = new ZipFile(zipFile);
InputStream in = null;
OutputStream out = null;
try {
for (Enumeration<?> entries = zf.entries(); entries.hasMoreElements();) {
ZipEntry entry = ((ZipEntry) entries.nextElement());
in = zf.getInputStream(entry);
String str = folderPath + File.separator + entry.getName();
str = new String(str.getBytes("8859_1"), HTTP.UTF_8);
File desFile = new File(str);
if (!desFile.exists()) {
File fileParentDir = desFile.getParentFile();
if (!fileParentDir.exists()) {
fileParentDir.mkdirs();
}
desFile.createNewFile();
}
out = new FileOutputStream(desFile);
byte buffer[] = new byte[BUFF_SIZE];
int realLength;
while ((realLength = in.read(buffer)) > 0) {
out.write(buffer, 0, realLength);
}
}
} finally {
if (in != null)
in.close();
if (out != null)
out.close();
}
}
/**
* 解压文件名包含传入文字的文件
*
* @param zipFile
* 压缩文件
* @param folderPath
* 目标文件夹
* @param nameContains
* 传入的文件匹配名
* @throws ZipException
* 压缩格式有误时抛出
* @throws IOException
* IO错误时抛出
*/
public static ArrayList<File> upZipSelectedFile(File zipFile, String folderPath, String nameContains) throws ZipException,
IOException {
ArrayList<File> fileList = new ArrayList<File>();
File desDir = new File(folderPath);
if (!desDir.exists()) {
desDir.mkdir();
}
ZipFile zf = new ZipFile(zipFile);
InputStream in = null;
OutputStream out = null;
try {
for (Enumeration<?> entries = zf.entries(); entries.hasMoreElements();) {
ZipEntry entry = ((ZipEntry) entries.nextElement());
if (entry.getName().contains(nameContains)) {
in = zf.getInputStream(entry);
String str = folderPath + File.separator + entry.getName();
str = new String(str.getBytes("8859_1"), HTTP.UTF_8);
// str.getBytes(AppConstans.UTF_8),"8859_1" 输出
// str.getBytes("8859_1"),AppConstans.UTF_8 输入
File desFile = new File(str);
if (!desFile.exists()) {
File fileParentDir = desFile.getParentFile();
if (!fileParentDir.exists()) {
fileParentDir.mkdirs();
}
desFile.createNewFile();
}
out = new FileOutputStream(desFile);
byte buffer[] = new byte[BUFF_SIZE];
int realLength;
while ((realLength = in.read(buffer)) > 0) {
out.write(buffer, 0, realLength);
}
fileList.add(desFile);
}
}
} finally {
if (in != null)
in.close();
if (out != null)
out.close();
}
return fileList;
}
/**
* 获得压缩文件内文件列表
*
* @param zipFile
* 压缩文件
* @return 压缩文件内文件名称
* @throws ZipException
* 压缩文件格式有误时抛出
* @throws IOException
* 当解压缩过程出错时抛出
*/
public static ArrayList<String> getEntriesNames(File zipFile) throws ZipException, IOException {
ArrayList<String> entryNames = new ArrayList<String>();
Enumeration<?> entries = getEntriesEnumeration(zipFile);
while (entries.hasMoreElements()) {
ZipEntry entry = ((ZipEntry) entries.nextElement());
entryNames.add(new String(getEntryName(entry).getBytes(HTTP.UTF_8), "8859_1"));
}
return entryNames;
}
/**
* 获得压缩文件内压缩文件对象以取得其属性
*
* @param zipFile
* 压缩文件
* @return 返回一个压缩文件列表
* @throws ZipException
* 压缩文件格式有误时抛出
* @throws IOException
* IO操作有误时抛出
*/
public static Enumeration<?> getEntriesEnumeration(File zipFile) throws ZipException, IOException {
ZipFile zf = new ZipFile(zipFile);
return zf.entries();
}
/**
* 取得压缩文件对象的注释
*
* @param entry
* 压缩文件对象
* @return 压缩文件对象的注释
* @throws UnsupportedEncodingException
*/
public static String getEntryComment(ZipEntry entry) throws UnsupportedEncodingException {
return new String(entry.getComment().getBytes(HTTP.UTF_8), "8859_1");
}
/**
* 取得压缩文件对象的名称
*
* @param entry
* 压缩文件对象
* @return 压缩文件对象的名称
* @throws UnsupportedEncodingException
*/
public static String getEntryName(ZipEntry entry) throws UnsupportedEncodingException {
return new String(entry.getName().getBytes(HTTP.UTF_8), "8859_1");
}
/**
* 压缩文件
*
* @param resFile
* 需要压缩的文件(夹)
* @param zipout
* 压缩的目的文件
* @param rootpath
* 压缩的文件路径
* @throws FileNotFoundException
* 找不到文件时抛出
* @throws IOException
* 当压缩过程出错时抛出
*/
private static void zipFile(File resFile, ZipOutputStream zipout, String rootpath) throws FileNotFoundException, IOException {
rootpath = rootpath + (rootpath.trim().length() == 0 ? "" : File.separator) + resFile.getName();
rootpath = new String(rootpath.getBytes("8859_1"), HTTP.UTF_8);
BufferedInputStream in = null;
try {
if (resFile.isDirectory()) {
File[] fileList = resFile.listFiles();
for (File file : fileList) {
zipFile(file, zipout, rootpath);
}
} else {
byte buffer[] = new byte[BUFF_SIZE];
in = new BufferedInputStream(new FileInputStream(resFile), BUFF_SIZE);
zipout.putNextEntry(new ZipEntry(rootpath));
int realLength;
while ((realLength = in.read(buffer)) != -1) {
zipout.write(buffer, 0, realLength);
}
in.close();
zipout.flush();
zipout.closeEntry();
}
} finally {
if (in != null)
in.close();
// if (zipout != null);
// zipout.close();
}
}
}
分享到:
相关推荐
在Android平台上,对zip文件进行压缩和解压是常见...理解这些工具的使用和工作原理,对于开发者来说,是实现文件压缩和解压功能的基础。在实际开发中,要结合项目需求,合理选择并优化相关操作,以提供更好的用户体验。
zip4j -- Java处理zip压缩文件的完整解决...支持文件压缩、解压并加密解密,不过只适用于zip文件格式。rar文件不支持。jar包的局限性。但是我下载了支持rar加密解密的jar包。你可以自己尝试。如有疑问可以留言。谢谢!
Android SDK提供了解压缩ZIP文件的工具类`ZipFile`和`InputStream`。以下是一个简单的解压流程: 1. 打开`assets`目录下的ZIP文件: ```java AssetManager assetManager = getAssets(); InputStream is = null; ...
总之,理解并熟练运用Android中的文件压缩和解压技术,可以帮助开发者在存储和传输数据时更高效地利用资源。注意处理非ASCII字符,确保程序的稳定性和兼容性。同时,适时使用第三方库可以简化代码并增强功能。
### 文件压缩 1. **创建`ZipOutputStream`**:首先,你需要创建一个`FileOutputStream`对象,指向你想要生成的ZIP文件。然后,利用这个`FileOutputStream`实例化一个`ZipOutputStream`。 2. **添加文件到ZIP**:...
总的来说,Android文件压缩与解压是通过Java的`java.util.zip`库实现的,这对于开发涉及文件打包和传输的应用非常有用。熟悉这些操作对任何Android开发者来说都是必备的技能。通过研究`ZipDemo`源码,你可以更好地...
在IT领域,文件压缩和解压是日常工作中非常常见的操作,尤其对于处理大量数据或进行文件传输时。这里我们将深入探讨这一主题,了解其背后的原理、常见工具以及如何有效地使用它们。 首先,让我们理解文件压缩的基本...
需要解压安卓备份的img文件的来拿把,在Windows中查看img,支持XP,VISTA,WIN7,WIN8,更高.. Android安卓img镜像文件解压,安卓备份文件解压,安卓备份的img文件解压缩 很方便
综上所述,实现Android在线下载并解压压缩包到指定目录,需要综合运用网络请求、文件操作、流处理和多线程等技术,同时考虑用户体验和安全性。通过以上步骤,开发者可以构建一个高效且可靠的下载解压功能。
总结,Android图片压缩与解压涉及多个环节,包括选择合适的压缩格式、控制Bitmap大小、解压文件、存储管理和高效显示。开发者需要结合具体需求,灵活运用Android Studio提供的工具和第三方库,确保应用在处理图片时...
综上所述,Android应用开发中处理ZIP文件下载和解压涉及多种技术,包括文件I/O、网络请求和文件系统操作。开发者需要熟悉这些基本概念,才能有效地实现功能。在实际项目中,还可能需要结合其他工具库如Volley、...
`Zip4j`库提供了简单易用的接口,可以方便地进行文件和文件夹的压缩与解压,而且支持设置密码保护,增加了数据的安全性。 以下是使用`Zip4j`进行压缩的基本步骤: 1. **添加依赖**:在项目的build.gradle文件中...
Android解压缩文件。Android原生的解压缩文件,使用时提供保存的路径即可
虽然Android内建的API可以处理ZIP文件,但有些第三方库如`Apache Commons Compress`和`Zip4j`提供了更高级的功能,如密码保护的ZIP文件解压,或者处理更复杂的压缩算法。 7. **性能优化** 对于大量数据的解压,...
其实在网上有很多介绍下载文件或者解压zip文件的文章,但是两者结合的不多,所以这篇文章在此记录一下下载zip文件并直接解压的方法,直接上代码,文末有源码下载。 下载: import java.io.BufferedInputStream; ...
Android端zip压缩与解压,目前暂时只做zip格式支持,基于Zip4j (http://www.lingala.net/zip4j/)进行扩展成工具类,支持对单个文件,多个文件以及文件夹进行压缩,对压缩文件解压到到指定目录,支持压缩解压使用密码...
综上所述,Android客户端的文件下载、上传和解压涉及网络编程、多线程、文件操作等多个方面,开发者需全面理解这些概念并灵活运用,以创建高效、安全且用户体验良好的应用。通过不断学习和实践,开发者可以更好地...
首先,`ab`文件是一种加密和压缩的数据格式,由Android的`adb backup`命令创建。这种文件包含了设备上应用程序的数据,包括应用设置、联系人、短信、图片等,以便在需要时进行恢复。由于其内部结构复杂,普通用户很...
在Android开发中,处理压缩文件是一项常见的任务,尤其是在下载、更新或者备份数据时。然而,当压缩文件包含中文字符时,解压缩过程中可能会遇到乱码问题。这是因为编码格式不匹配或者处理方式不当导致的。本篇文章...
以上代码示例展示了如何在Android应用中进行Zip文件的解压缩和压缩操作。请注意,实际应用中可能需要考虑异常处理、多线程优化以及资源管理等细节问题。此外,如果对性能有较高要求,可以考虑使用第三方库如Apache ...