servlet中解决中文乱码的方法

简介: servlet中解决中文乱码的方法

@[toc]

一、页面乱码问题的解决

1、jsp页面
在头文件中加入(UTF-8)编码格式:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
      <title>Title</title>
</head>
<body>
   <h1>请求失败</h1>
</body>
</html>    

2、html页面

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

应用:

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>标题</title>
    </head>
    <body>
    中文正文
     </body>
</html>

二、request请求的乱码问题

// 设置请求的中文编码格式为(UTF-8)
    request.setCharacterEncoding("utf-8");

应用:

public class EnglishServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        this.doGet(request, response);
    }
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // 设置请求的中文编码格式为(UTF-8)
        request.setCharacterEncoding("utf-8");
    }
}

三、response相应的乱码问题

1、方式一:

// 设置相应的中文编码格式为(UTF-8)
response.setCharacterEncoding("utf-8");
// 将设置的编码格式通知浏览器
response.addHeader("content-type", "text/html;charset=utf-8");

2、方式二:

// 合并为一个方法,设置编码格式(UTF-8)
response.setContentType("utf-8");

应用:

public class EnglishServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        this.doGet(request, response);
    }
    
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        //方式一:
        //设置相应的中文编码格式为(UTF-8)
        response.setCharacterEncoding("utf-8");
        //将设置的编码格式通知浏览器
        response.addHeader("content-type", "text/html;charset=utf-8");
        //方式二:
        //合并为一个方法,设置编码格式(UTF-8)
        response.setContentType("utf-8");
    }
}

四、连接地址:

1、百度网盘:

链接:https://pan.baidu.com/s/1lCFu2esqEaHZqSo7saGqlg
提取码:esko 

2、CSDN:

https://download.csdn.net/download/weixin_44624117/11438274
目录
相关文章
|
6月前
Servlet方法介绍及体系结构
Servlet方法介绍及体系结构
54 0
|
5月前
|
XML 数据格式
XML配置Servlet文件,不使用注解配置路径的方法
XML配置Servlet文件,不使用注解配置路径的方法
序-Servlet和SpringMVC的联系和区别-配置路径先想好使用的使用的方法,然后匹配的需要的技术
序-Servlet和SpringMVC的联系和区别-配置路径先想好使用的使用的方法,然后匹配的需要的技术
|
6月前
|
存储 Java 应用服务中间件
Servlet执行流程&生命周期&方法介绍&体系结构、Request和Response的功能详解(2)
Servlet执行流程&生命周期&方法介绍&体系结构、Request和Response的功能详解
66 2
|
6月前
|
Web App开发 XML Java
Servlet执行流程&生命周期&方法介绍&体系结构、Request和Response的功能详解(1)
Servlet执行流程&生命周期&方法介绍&体系结构、Request和Response的功能详解
109 2
|
缓存 Java
严重: Servlet[jsp]的Servlet.service()抛出异常 java.lang.IllegalStateException: 当前响应已经调用了方法getOutputStream()
严重: Servlet[jsp]的Servlet.service()抛出异常 java.lang.IllegalStateException: 当前响应已经调用了方法getOutputStream()
603 0
|
JSON Java 数据格式
idea 从Servlet转发到jsp页面中文乱码
idea 从Servlet转发到jsp页面中文乱码
126 0
为什么不重写Servlet中的Service()方法
为什么不重写Servlet中的Service()方法
|
Java 应用服务中间件 API
【Servlet篇】如何解决Request请求中文乱码的问题?
【Servlet篇】如何解决Request请求中文乱码的问题?
441 0
Servlet Cookie 方法
Servlet Cookie 方法
57 0