1、存入中文:
Cookie c = new Cookie("username", java.net.URLEncoder.encode(name,"utf-8"));
2、取出中文:
java.net.URLDecoder.URLDecoder.decode(c.getValue());
原文地址:https://www.cnblogs.com/caoleiCoding/p/9135793.html
时间: 2024-11-05 02:31:23
Cookie c = new Cookie("username", java.net.URLEncoder.encode(name,"utf-8"));
java.net.URLDecoder.URLDecoder.decode(c.getValue());
原文地址:https://www.cnblogs.com/caoleiCoding/p/9135793.html