首頁 > 軟體

Java Web專案中解決中文亂碼方法總結(三種最新方法)

2022-06-17 18:02:09

前言

JavaEE(Java Enterprise Edition),Java企業版,是一個用於企業級web開發平臺。最早由Sun公司客製化並行布,後由Oracle負責維護。JavaEE平臺規範了在開發企業級web應用中的技術標準.
在JavaEE平臺共包含了13個技術規範(隨著JavaEE版本的變化所包含的技術點的數量會有增多)。它們分別是:JDBC、JNDI、EJB、RMI、Servlet、JSP、XML、JMS、Java IDL、JPA、JTA、JavaMail和JAF。
JAVEE階段需要學習的核心技能

ServletJSPJSTL/ELJavaBeanMVC模式、過濾器Filter、監聽器listener、Ajax 分頁

問題背景

package com.mrshun;
/**
 * get請求
 *        獲取字串之後使用new String(name.getBytes("iso-8859-1"),"UTF-8")
 *
 */
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public class charsetServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        String name = request.getParameter("name");
        System.out.println("this is doPost"+name);
    }
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
       
        String name = request.getParameter("name");
        //第一種方法
        System.out.println("this is doGet +charset"+new String(name.getBytes("iso-8859-1"),"utf-8"));
        System.out.println("this is doGet"+name);
    }
}
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
    <servlet>
        <servlet-name>charsetServlet</servlet-name>
        <servlet-class>com.mrshun.charsetServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>charsetServlet</servlet-name>
        <url-pattern>/charset</url-pattern>
    </servlet-mapping>
</web-app>

tomact啟動專案後在位址列中輸入charset?name=張三,這個時候便被doget方法獲取,為啥不是doPost原因你知道嗎?

這個時候idea控制檯會輸出:

執行結果無法識別中文,出現亂碼;
出現亂碼的原因很簡單,就是編碼不匹配,無法識別造成的。

下面我說三種方法供大家參考

方法一:

如上面程式碼:獲取字串之後使用new String(name.getBytes("iso-8859-1"),"UTF-8")
也就是:

System.out.println("this is doGet +charset"+new String(name.getBytes("iso-8859-1"),"utf-8"));

方法二:

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    request.setCharacterEncoding("utf-8");
    String name = request.getParameter("name");
    System.out.println("this is doGet"+name);
}

接著修改tomact ----conf----server.xml
建議用Notepad++開啟,裡面程式碼自動補全功能很好

正常情況是打出:use便出現後面的內容

useBodyEncodingForURI="true"

第三種方法:

只改conf中server.xml

文章到這就算結束了。

下面是關於Tomcat結構與介紹:

Tomcat結構與介紹

bin

bin目錄主要是用來存放tomcat的命令檔案,主要有兩大類,一類是以.sh結尾的(linux命令),另一類是以.bat結尾的(windows命令)。

conf

conf目錄主要是用來存放tomcat的一些組態檔。

lib

lib目錄主要用來存放tomcat執行需要載入的jar包。

logs

logs目錄用來存放tomcat在執行過程中產生的紀錄檔檔案。

temp

temp目錄使用者存放tomcat在執行過程中產生的臨時檔案。(清空不會對tomcat執行帶來影響)

webapps

webapps目錄用來存放應用程式,當tomcat啟動時會去載入webapps目錄下的應用程式。可以以資料夾、war包的形式釋出應用。

work

work目錄用來存放tomcat在執行時的編譯後檔案,例如JSP編譯後的檔案。

到此這篇關於Java Web專案中解決中文亂碼方法總結的文章就介紹到這了,更多相關Java Web中文亂碼內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com