Cookie再HTTP的头部,不能再压缩HTTP Body时进行压缩,但是Cookie可以把多个k/v看成普通文本,进行文本压缩。
Cookie压缩之后进行转码,因为Cookie中不能有控制字符,只能包含ASCII码(34-126)的可见字符;
//使用Deflater压缩再进行BASE64编码。
//Filter在页面输出时对Cookie进行全部或者部分压缩
private void compressCookie(Cookie c,HttpServletResponse res)
{
try
{
System.out.println("before compress length:" + c.getValue().getBytes().length);
//
//可以捕获内存缓冲区的数据,这个类实现了一个输出流,数据转为字节数组,这个数据可以转为toByteArray()和toString();
ByteArrayOutputStream bos = null;
bos = new ByteArrayOutputStream();
//“deflate” 压缩格式压缩数据实现输出流过滤器
DeflaterOutputStream dos = new DeflaterOutputStream(bos);
dos.write(c.getValue.getBytes());
dos.close();
//Base64编码
String compress = new sun.misc.BASE64Encoder().encode(bos.toByteArray());
//添加到httpServletResponse中
res.addCookie(new Cookie("compress",compress));
System.out.println("after compress length:" + compress.getBytes().length);
}catch(IOException e)
{
e.printStackTrace();
}
}
//使用InflaterInputStream进行解压
private void unCompressCookie(Cookie c)
{
try
{
//可以捕获内存缓冲区的数据,这个类实现了一个输出流,数据转为字节数组,这个数据可以转为toByteArray()和toString();
ByteArrayOutputStream out = new ByteArrayOutputStream();
//字节型数组
//BASE64编码
byte[] compress = new sun.misc.BASE64Decoder()
.decodeBuffer(new String(c.getValue().getBytes()));
ByteArrayInputStream bis = new ByteArrayInputStream(compress);
InflaterInputStream inflater = new InflaterInputSteam(bis);
byte[] b = new byte[1024];
int count;
while((count = inflater.read(b))>0)
{
out.write(b,0,count);
}
inflater.close();
System.out.println(out.toByteArray());
}catch(Exception e)
{
e.printStackTrace();
}
}
DeflaterOutputStream对Cookie进行压缩,Deflater压缩之后BASE64编码。
同样使用Deflater进行编码然后,inflaterInputStream对Cookie进行解压