使用 GZIPOutputStream 压缩字符串
Posted
技术标签:
【中文标题】使用 GZIPOutputStream 压缩字符串【英文标题】:Compressing a string using GZIPOutputStream 【发布时间】:2011-07-19 12:52:11 【问题描述】:我想压缩我的字符串值。这些字符串值应与.net
压缩字符串相同。
我编写了 Decompress 方法,当我向它发送 .net
压缩字符串时,它可以正常工作。但是 Compress 方法不能正常工作。
public static String Decompress(String zipText) throws IOException
int size = 0;
byte[] gzipBuff = Base64.decode(zipText);
ByteArrayInputStream memstream = new ByteArrayInputStream(gzipBuff, 4,
gzipBuff.length - 4);
GZIPInputStream gzin = new GZIPInputStream(memstream);
final int buffSize = 8192;
byte[] tempBuffer = new byte[buffSize];
ByteArrayOutputStream baos = new ByteArrayOutputStream();
while ((size = gzin.read(tempBuffer, 0, buffSize)) != -1)
baos.write(tempBuffer, 0, size);
byte[] buffer = baos.toByteArray();
baos.close();
return new String(buffer, "UTF-8");
public static String Compress(String text) throws IOException
byte[] gzipBuff = EncodingUtils.getBytes(text, "UTF-8");
ByteArrayOutputStream bs = new ByteArrayOutputStream();
GZIPOutputStream gzin = new GZIPOutputStream(bs);
gzin.write(gzipBuff);
gzin.finish();
bs.close();
byte[] buffer = bs.toByteArray();
gzin.close();
return Base64.encode(buffer);
例如当我发送的 “BQAAAB + LCAAAAAAABADtvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee ++ 997o7nU4n99 // P1xmZAFs9s5K2smeIYCqyB8 / fnwfPyLmeVlW / W + GphA2BQAAAA ==”以解压 EM>方法,它返回字符串“Hello ",但是当我将 "Hello" 发送到 Compress 方法时,它返回 "H4sIAAAAAAAAAAMtIzcnJBwCGphA2BQAAAA=="。
Compress方法有什么问题????
【问题讨论】:
【参考方案1】:查看Use Zip Stream and Base64 Encoder to Compress Large String Data
关于如何使用 GZIPOutputStream/GZIInputStream 和 Base64 Encoder and Decoder 对大字符串数据进行压缩和解压缩,以便在 http 响应中作为文本传递。
public static String compressString(String srcTxt) throws IOException
ByteArrayOutputStream rstBao = new ByteArrayOutputStream();
GZIPOutputStream zos = new GZIPOutputStream(rstBao);
zos.write(srcTxt.getBytes());
IOUtils.closeQuietly(zos);
byte[] bytes = rstBao.toByteArray();
return Base64.encodeBase64String(bytes);
或者我们可以使用Use Zip Stream and Base64 Encoder to Compress Large String Data 来避免将整个字符串加载到内存中。
public static String uncompressString(String zippedBase64Str) throws IOException
String result = null;
byte[] bytes = Base64.decodeBase64(zippedBase64Str);
GZIPInputStream zi = null;
try
zi = new GZIPInputStream(new ByteArrayInputStream(bytes));
result = IOUtils.toString(zi);
finally
IOUtils.closeQuietly(zi);
return result;
【讨论】:
请尝试阅读此***.com/help/deleted-answers,以进一步了解如何不回答。即:“没有从根本上回答问题的答案”:仅是指向外部网站的链接【参考方案2】:我尝试过使用 java vm 我想结果是一样的。 在 Compress 方法的末尾使用这一行:
return new String(base64.encode(buffer), "UTF-8");
【讨论】:
sorry in android 构造函数 String(String, String) 未定义 文档讨论 encodeToString() 方法:Base64.html。我无法尝试,我无法在我的 PC 上安装 android。以上是关于使用 GZIPOutputStream 压缩字符串的主要内容,如果未能解决你的问题,请参考以下文章