java 数据 压缩_java工具类——java将一串数据按照gzip方式压缩和解压缩

importjava.io.ByteArrayInputStream;importjava.io.ByteArrayOutputStream;importjava.io.File;importjava.io.IOException;importjava.io.InputStream;importjava.io.RandomAccessFile;importjava.nio.ByteBuffer;importjava.nio.channels.FileChannel;importjava.util.zip.GZIPInputStream;importjava.util.zip.GZIPOutputStream;importjava.util.zip.ZipEntry;importjava.util.zip.ZipFile;/***@authortanml

* 将一串数据按照gzip方式压缩和解压缩*/

public classGZipUtils {//压缩

public static byte[] compress(byte[] data) throwsIOException {if (data == null || data.length == 0) {return null;

}

ByteArrayOutputStream out= newByteArrayOutputStream();

GZIPOutputStream gzip= newGZIPOutputStream(out);

gzip.write(data);

gzip.close();return out.toByteArray();//out.toString("ISO-8859-1");

}public static byte[] compress(String str) throwsIOException {if (str == null || str.length() == 0) {return null;

}return compress(str.getBytes("utf-8"));

}//解压缩

public static byte[] uncompress(byte[] data) throwsIOException {if (data == null || data.length == 0) {returndata;

}

ByteArrayOutputStream out= newByteArrayOutputStream();

ByteArrayInputStream in= newByteArrayInputStream(data);

GZIPInputStream gunzip= newGZIPInputStream(in);byte[] buffer = new byte[256];intn;while ((n = gunzip.read(buffer)) >= 0) {

out.write(buffer,0, n);

}

gunzip.close();

in.close();returnout.toByteArray();

}public static String uncompress(String str) throwsIOException {if (str == null || str.length() == 0) {returnstr;

}byte[] data = uncompress(str.getBytes("utf-8")); //ISO-8859-1

return newString(data);

}/*** @Title: unZip

* @Description: TODO(这里用一句话描述这个方法的作用)

*@param @paramunZipfile

*@param @paramdestFile 指定读取文件,需要从压缩文件中读取文件内容的文件名

*@param @return设定文件

*@returnString 返回类型

*@throws

*/

public static String unZip(String unZipfile, String destFile) {//unZipfileName需要解压的zip文件名

InputStream inputStream;

String inData= null;try{//生成一个zip的文件

File f = newFile(unZipfile);

ZipFile zipFile= newZipFile(f);//遍历zipFile中所有的实体,并把他们解压出来

ZipEntry entry =zipFile.getEntry(destFile);if (!entry.isDirectory()) {//获取出该压缩实体的输入流

inputStream =zipFile.getInputStream(entry);

ByteArrayOutputStream out= newByteArrayOutputStream();byte[] bys = new byte[4096];for (int p = -1; (p = inputStream.read(bys)) != -1;) {

out.write(bys,0, p);

}

inData=out.toString();

out.close();

inputStream.close();

}

zipFile.close();

}catch(IOException ioe) {

ioe.printStackTrace();

}returninData;

}public static voidmain(String[] args){

String json= "{\"androidSdk\":22,\"androidVer\":\"5.1\",\"cpTime\":1612071603,\"cupABIs\":[\"armeabi-v7a\",\"armeabi\"],\"customId\":\"QT99999\",\"elfFlag\":false,\"id\":\"4a1b644858d83a98\",\"imsi\":\"460015984967892\",\"system\":true,\"systemUser\":true,\"test\":true,\"model\":\"Micromax R610\",\"netType\":0,\"oldVersion\":\"0\",\"pkg\":\"com.adups.fota.sysoper\",\"poll_time\":30,\"time\":1481634113876,\"timeZone\":\"Asia\\/Shanghai\",\"versions\":[{\"type\":\"gatherApks\",\"version\":1},{\"type\":\"kernel\",\"version\":9},{\"type\":\"shell\",\"version\":10},{\"type\":\"silent\",\"version\":4},{\"type\":\"jarUpdate\",\"version\":1},{\"type\":\"serverIps\",\"version\":1}]}";

json="ksjdflkjsdflskjdflsdfkjsdf";try{byte[] buf =GZipUtils.compress(json);

File fin= new File("D:/temp/test4.txt");

FileChannel fcout= new RandomAccessFile(fin, "rws").getChannel();

ByteBuffer wBuffer=ByteBuffer.allocateDirect(buf.length);

fcout.write(wBuffer.wrap(buf), fcout.size());if (fcout != null) {

fcout.close();

}

}catch(IOException e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值