jsp解决中文乱码(二)

<%

//cookie不支持中文存储

Cookie cookie = new Cookie("mess", URLEncoder.encode("中国"));

response.addCookie(cookie);

%>


<%

Cookie[] cookies = request.getCookies();

if(cookies != null){

for(int i=0; i<cookies.length; i++){

if(cookies[i].getName().equals("mess")){

out.println(URLDecoder.decode(cookies[i].getValue()));

}

}

}

%>


本文出自 “聚沙成塔” 博客,谢绝转载!

你可能感兴趣的:(jsp)