Servlet乱码问题解决
Posted striver20
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Servlet乱码问题解决相关的知识,希望对你有一定的参考价值。
-
使用String重新进行编码
String name = new String(name.getBytes("ios-8859-1"),"utf-8")
-
get请求乱码
request.setCharacterEncoding("utf-8");
在server.xml中添加属性useBodyEncodingorURI=true
-
post请求乱码
request.setCharacterEncoding("utf-8");
-
response乱码
response.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=utf-8")
以上是关于Servlet乱码问题解决的主要内容,如果未能解决你的问题,请参考以下文章