字符串压缩与解压

项目中一些大文本需要存数据库,为减少数据库的IO,对文本进行压缩。取出来的时候再解压缩

/**
* 字符串压缩
* @param input
* @return
*/
public static final byte[] compress(byte[] input) {
if (input == null) {
return null;
}
Deflater compressor = new Deflater();
compressor.setLevel(Deflater.BEST_SPEED); //调整压缩策略,这里使用了最快速的压缩方式
compressor.setInput(input);
compressor.finish();
int len = input.length;
ByteArrayOutputStream bos = new ByteArrayOutputStream(len);
while (!compressor.finished()) {
byte[] buf = new byte[len];
int count = compressor.deflate(buf);
if (count > 0) {
bos.write(buf, 0, count);
}
}
return bos.toByteArray();
}

/**
* 解压缩
* @param compressed
* @return
*/
public static final byte[] decompress(byte[] compressed) {
if (compressed == null) {
return null;
}
try {
Inflater decompressor = new Inflater();
decompressor.setInput(compressed);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
int len = compressed.length << 2;
while (!decompressor.finished()) {
byte[] buf = new byte[len];
int count = decompressor.inflate(buf);
if (count > 0) {
bos.write(buf, 0, count);
}
}
return bos.toByteArray();
} catch (DataFormatException e) {
return compressed;
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值