Servlet乱码问题解决

Posted striver20

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Servlet乱码问题解决相关的知识,希望对你有一定的参考价值。

  1. 使用String重新进行编码

    String name = new String(name.getBytes("ios-8859-1"),"utf-8")
    
  2. get请求乱码

    request.setCharacterEncoding("utf-8");
    

    在server.xml中添加属性useBodyEncodingorURI=true

  3. post请求乱码

    request.setCharacterEncoding("utf-8");
    
  4. response乱码

    response.setCharacterEncoding("utf-8");
    
    response.setContentType("text/html;charset=utf-8")
    

以上是关于Servlet乱码问题解决的主要内容,如果未能解决你的问题,请参考以下文章

简单粗暴 每个servlet之前都插入一段代码解决 乱码问题

Servlet中文乱码问题解决办法

Servlet笔记8--乱码解决方案

Tomcat7下配置SSI,同时解决中文乱码问题

javaweb表单提交中文乱码问题?

servlet乱码