cookie存取会出现中文乱码,必须对中文的cookie对象进行转换成utf-8格式
这是utf-8编码和解码的一个例子:
String mytext = java.net.URLEncoder.encode("中国", "utf-8");
String mytext2 = java.net.URLDecoder.decode(mytext, "utf-8"); 这两条语句在同一个页面中的话,得到的结果是: mytext: %E4%B8%AD%E5%9B%BD mytex2: 中国本文共 296 字,大约阅读时间需要 1 分钟。
cookie存取会出现中文乱码,必须对中文的cookie对象进行转换成utf-8格式
这是utf-8编码和解码的一个例子:
String mytext = java.net.URLEncoder.encode("中国", "utf-8");
String mytext2 = java.net.URLDecoder.decode(mytext, "utf-8"); 这两条语句在同一个页面中的话,得到的结果是: mytext: %E4%B8%AD%E5%9B%BD mytex2: 中国转载于:https://www.cnblogs.com/guojie001/p/5707770.html