人生若只如初见

WXY

返回给前端GZip压缩后的数据

2022-07-25

压缩顺序,Json序列化 数据,取UTF-8编码的数组,对该数组进行GZip压缩,返回的即为压缩后的数组。
使用到hutool工具包 import cn.hutool.core.util.ZipUtil;

// Json序列化所有班次实时信息数据集,取UTF-8编码的数组  dataList为数据
byte[] bytes = JsonUtils.toJsonString(dataList).getBytes(StandardCharsets.UTF_8);
// 对该数组进行GZip压缩
byte[] gzip = ZipUtil.gzip(bytes);