1. 程式人生 > >中文亂碼問題的各種對應的解決方案

中文亂碼問題的各種對應的解決方案

以下是幾種在開發中中文亂碼問題的解決方案

當sevlet返回js指令碼時彈出框顯示中文亂碼的解決方案:
可以在servlet中加上response.setContentType(“text/html;charset=utf-8”);
servlet中用response有3種設定輸出內容的編碼方式:
1.response.setCharacterEncoding(“UTF-8”); 只能用來設定out輸出流中所採用的編碼,但是他的優先權最高,可以覆蓋後兩種方法中的設定;

2.response.setContentType(“text/html;charset=UTF-8”); 即可以設定out輸出流中字元的編碼方式,也可是設定瀏覽器接收到這些字元後以什麼編碼方式來解碼,它的優先權低於第一種方法,但高於response.setLocale(new java.util.Locale(“zh”,”CN”)); 相當於服務端解析:<%@ page contentType=”text/html;charset=UTF-8” %>

3.response.setLocale(new java.util.Locale(“zh”,”CN”));只能用來設定out輸出流中字元的編碼方式,但是它的優先權最低,在已經用前兩種方法之一設定了編碼方式以後,它就被覆蓋而不起作用了。
  

public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        response.setContentType("text/html;charset=utf-8"
); request.setCharacterEncoding("utf-8");////把頁面引數按utf-8編碼後傳入伺服器端 // response.setLocale(new java.util.Locale("zh","CN")); // response.setCharacterEncoding("utf-8"); int bid = Integer.parseInt(request.getParameter("bid")); BookService bookService = new BookServiceImpl();
boolean result = bookService.deleteBook(bid); if(result){ response.getWriter().print("<script type='text/javascript'>alert('刪除成功!');window.location='ShowAllServlet'</script>"); }else{ response.getWriter().print("<script type='text/javascript'>alert('刪除失敗!');window.location='ShowAllServlet'</script>"); } }

jsp頁面顯示亂碼,則需要你在jsp頁面中設定編碼方式,這裡一般最好三個都要配上utf-8:

<%@ page language=”java” contentType=”text/html; charset=utf-8” pageEncoding=”utf-8”%> 是伺服器端java程式執行時的輸出編碼,伺服器端以什麼樣的編碼向客戶端輸出HTML. 。

< meta http-equiv=”Content-Type” content=”text/html; charset=utf-8”>是指客戶端瀏覽器以什麼樣的編碼來顯示網頁,指導瀏覽器解析伺服器端傳入的HTML流. 同時它還有一個作用,指導其提交表單的時候使用什麼編碼傳入request.

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>



</body>
</html>

如果使用SSM框架開發,則可以通過在web.xml中配置字元編碼過濾器的方式統一字元編碼

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>UserManager</display-name>

  <welcome-file-list>
    <welcome-file>login.jsp</welcome-file>
  </welcome-file-list>


  <!-- 配置spring監聽 -->
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>


  <!-- 統一字元編碼 -->
  <filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>utf-8</param-value>
    </init-param>
    <init-param>  
        <param-name>forceEncoding</param-name>  
        <param-value>true</param-value>  
    </init-param>  
  </filter>

  <filter-mapping>  
     <filter-name>CharacterEncodingFilter</filter-name>  
     <url-pattern>/*</url-pattern>  
   </filter-mapping>  


</web-app>

在web開發中,tomcat對於傳輸的字串都是採用iso-8859-1編碼/解碼方式。而瀏覽器端對於中文都是用gbk或utf-8中文編碼/解碼方式,所以傳到後臺都會是亂碼的,容器一般都是有處理的,所以中文能正常顯示和儲存。但有些情況也是會出現亂碼的,解決方式如下

String b = new String(str.getBytes(“iso-8859-1”,”客戶端的編碼/解碼方式”)) // 中文解碼方式一般用的是utf-8或者gbk。
如:

 String b1 = new String(str.getBytes("iso-8859-1","utf-8"));