Control character in cookie value, consider BASE64 encoding your value-Cookie保存中文出错[转]

项目当中用到cookie保存中文,但是会报如下错误:

Control character in cookie value, consider BASE64 encoding your value

大概意思是保存到cookie当中的值存在控制字符,无法保存。但实际上数据是不存在这种问题的。再看后面的那句话,好像是将要保存的值进行了base64编码,可能是因为中文在编码时出现乱码导致一些控制字符的出现。

解决方案:将要保存的值进行URLEncoder.encode(value,"utf-8")编码。

在提取时,同样进行解码:

  1. /**
  2. * 添加一个cookie值
  3. * @param name 名称
  4. * @param value 值
  5. * @param time  cookie的有效期
  6. * @param response 保存cookie的对象
  7. */
  8. public static void setCookie(String name, String value, Integer time,HttpServletResponse response) {
  9. try {
  10. //关键点
  11. value = URLEncoder.encode(value,"UTF-8");
  12. catch (UnsupportedEncodingException e) { }
  13. Cookie cookie = new Cookie(name, value);
  14. cookie.setPath("/");
  15. cookie.setMaxAge(time);
  16. response.addCookie(cookie);
  17. }
  18. /**
  19. * 根据name值,从cookie当中取值
  20. *
  21. * @param name    要获取的name
  22. * @param request cookie存在的对象
  23. * @return 与name对应的cookie值
  24. */
  25. public static String getCookie(String name, HttpServletRequest request) {
  26. Cookie[] cs = request.getCookies();
  27. String value = "";
  28. if (cs != null) {
  29. for (Cookie c : cs) {
  30. if (name.equals(c.getName())) {
  31. try {
  32. //关键点
  33. value = URLDecoder.decode(c.getValue(),"UTF-8");
  34. catch (UnsupportedEncodingException e) {
  35. }
  36. return value;
  37. }
  38. }
  39. }
  40. return value;
  41. }

转自:http://amcucn.javaeye.com/blog/403857

上一篇:jQuery Ajax传递数组到asp.net web api参数为空


下一篇:web.xml+spring mvc基本配置