关于zip对文本进行压缩和解压

本文介绍了一个Java实用类,用于实现字符串的Zip压缩及解压缩功能。通过Base64编码处理压缩后的字节流,便于在网络中传输。代码详细展示了如何使用Java标准库中的ZipOutputStream和ZipInputStream来完成压缩与解压缩过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >




import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;

import org.apache.commons.codec.binary.Base64;

public class ZipUtil {

 /**
  * 使用zip进行压缩
  *
  * @param str
  * @author: pzx
  *            压缩前的文本
  * @return 返回压缩后的文本
  */
 public static final String zipBase64String(String str) {
  if (str == null)
   return null;
  byte[] compressed;
  ByteArrayOutputStream out = null;
  ZipOutputStream zout = null;
  String compressedStr = null;
  try {
   out = new ByteArrayOutputStream();
   zout = new ZipOutputStream(out);
   zout.putNextEntry(new ZipEntry("zip"));
   zout.write(str.getBytes("utf-8"));
   zout.closeEntry();
   compressed = out.toByteArray();

   compressedStr = Base64.encodeBase64String(compressed);
  } catch (IOException e) {
   e.printStackTrace();
   compressed = null;
  } finally {
   if (zout != null) {
    try {
     zout.close();
    } catch (IOException e) {
    }
   }
   if (out != null) {
    try {
     out.close();
    } catch (IOException e) {
    }
   }
  }
  return compressedStr;
 }

 /**
  * 使用zip进行解压缩
  *
  * @param compressed
  *            Base64转码的压缩文本
  * @return 解压后的字符串
  */
 public static String unzipBase642String(String base64CompressedStr) {
  if (base64CompressedStr == null) {
   return null;
  }

  ByteArrayOutputStream out = new ByteArrayOutputStream();
  ByteArrayInputStream in = null;
  ZipInputStream ginzip = null;
  String decompressed = null;
  try {
   byte[] compressed = Base64.decodeBase64(base64CompressedStr);
   in = new ByteArrayInputStream(compressed);
   ginzip = new ZipInputStream(in);
   ginzip.getNextEntry();

   byte[] buffer = new byte[1024];
   int offset = -1;
   while ((offset = ginzip.read(buffer)) != -1) {
    out.write(buffer, 0, offset);
   }
   decompressed = out.toString("utf-8");
  } catch (IOException e) {
   e.printStackTrace();
  } finally {
   if (out != null) {
    try {
     out.close();
    } catch (IOException e) {
    }
   }
   if (ginzip != null) {
    try {
     ginzip.close();
    } catch (IOException e) {
    }
   }
   if (in != null) {
    try {
     in.close();
    } catch (IOException e) {
    }
   }
  }

  return decompressed;
 }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值