java 前后端解压缩字符串_接口实现后台GZIP压缩,pako.js 前端解压

import java.io.ByteArrayInputStream;

import java.io.ByteArrayOutputStream;

import java.io.IOException;

import java.util.zip.GZIPInputStream;

import java.util.zip.GZIPOutputStream;

public class GZIPUtils {

/**

* 字符串的压缩

*

* @param str

* 待压缩的字符串

* @return 返回压缩后的字符串

* @throws IOException

*/

public static String compress(String str) throws IOException {

if (null == str || str.length() <= 0) {

return null;

}

// 创建一个新的 byte 数组输出流

ByteArrayOutputStream out = new ByteArrayOutputStream();

// 使用默认缓冲区大小创建新的输出流

GZIPOutputStream gzip = new GZIPOutputStream(out);

// 将 b.length 个字节写入此输出流

gzip.write(str.getBytes("UTF-8"));

gzip.close();

// 使用指定的 charsetName,通过解码字节将缓冲区内容转换为字符

你可能感兴趣的:(java,前后端解压缩字符串)