byte[]转String再转byte[],new String()不好用时
/** *对文件信息压缩,提高存储效率 */
public static byte[] gzipByte(byte[] beferGzip) {
byte[] afterGzip = null;
try {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
GZIPOutputStream gzip = new GZIPOutputStream(bos);
gzip.write(beferGzip);
gzip.finish();
gzip.close();
afterGzip = bos.toByteArray();
bos.close();
共有 0 条评论