码迷,mamicode.com
首页 > 移动开发 > 详细

android自带zip轻松实现压缩解压

时间:2014-08-29 20:09:38      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:android   zip   java   

开发过程用到了zip压缩包,写了一个工具类,该类可以实现把字符串直接压缩成zip格式,省去了写入文件再压缩的步骤:

/**
 * 
 * @author shx
 * 压缩和解压缩工具
 *
 */
public class ZipUtil {

	/**
	 * 压缩方法
	 * @param str 要压缩的字符串
	 * @param path	路径
	 * @throws IOException
	 */
	public static void compress(String str,String path) throws IOException {
		if (null == str || str.length() <= 0) {
			return;
		}
		
		FileOutputStream fileOutputStream = new FileOutputStream(path);
		GZIPOutputStream gzip = new GZIPOutputStream(fileOutputStream);
		gzip.write(str.getBytes("utf-8"));
		gzip.close( );
		fileOutputStream.close();
		
	}
	/**
	 * 解压缩
	 * @param context
	 * @param path
	 * @return
	 */
	public static String unCompress(Context context,String path) {
		try {
			File file = new File(path);
			if (!file.exists()) {
				return context.getResources().getString(R.string.FileNotExits);
			}

			ByteArrayOutputStream out = new ByteArrayOutputStream();
			// 创建一个新的输出流
			FileInputStream fileInputStream = new FileInputStream(path);
			GZIPInputStream gzip = new GZIPInputStream(fileInputStream);

			byte[] buffer = new byte[256];
			int n = 0;

			// 将未压缩数据读入字节数组
			while ((n = gzip.read(buffer)) >= 0) {
				out.write(buffer, 0, n);
			}

			return out.toString("utf-8");

		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}


android自带zip轻松实现压缩解压

标签:android   zip   java   

原文地址:http://blog.csdn.net/shaohx0518/article/details/38929167

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!