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();

byte[]转String再转byte[],new String()不好用时最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/28111.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>