久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

Tomcat關(guān)于encoding編碼的默認(rèn)設(shè)置以及亂碼產(chǎn)生的原因

 hh3755 2013-09-04
注意:亂碼和request的具體實(shí)現(xiàn)類有關(guān),,現(xiàn)在已經(jīng)查到的是RequestDispatcher.forward調(diào)用前使用的是org.apache.catalina.connector.RequestFacade類而RequestDispatcher.forward調(diào)用后使用的是org.apache.catalina.core.ApplicationHttpRequest,,他們內(nèi)部在ParseParameter的時候,, 用來解碼的默認(rèn)的編碼邏輯不同,使用不同的協(xié)議時,,影響亂碼的因素不同,!
具體參考:Tomcat源碼分析--ServletRequest.getParameterValues內(nèi)部分析,Request字符集&QueryStringEncoding

亂碼的產(chǎn)生
譬如漢字“中”,,以UTF-8編碼后得到的是3字節(jié)的值%E4%B8%AD,,然后通過GET或者POST方式把這3個字節(jié)提交到Tomcat容器,如果你不告訴Tomcat我的參數(shù)是用UTF-8編碼的,,那么tomcat就認(rèn)為你是用ISO-8859-1來編碼的,,而ISO8859-1(兼容URI中的標(biāo)準(zhǔn)字符集US-ASCII)是兼容ASCII的單字節(jié)編碼并且使用了單字節(jié)內(nèi)的所有空間,因此Tomcat就以為你傳遞的用ISO-8859-1字符集編碼過的3個字符,,然后它就用ISO-8859-1來解碼,,得到中-,解碼后。字符串中-在Jvm是以Unicode的形式存在的,,而HTTP傳輸或者數(shù)據(jù)庫保存的其實(shí)是字節(jié),,因此根據(jù)各終端的需要,你可以把unicode字符串中-用UTF-8編碼后得到相應(yīng)的字節(jié)后存儲到數(shù)據(jù)庫(3個UTF-8字符),,也可以取得這3個字符對應(yīng)的ISO-8859-1的3個字節(jié),,然后用UTF-8重新編碼后得到unicode字符“中”(特性:把其他任何編碼的字節(jié)流當(dāng)作ISO-8859-1編碼看待都沒有問題),然后用response傳遞給客戶端(根據(jù)你設(shè)置的content-type不同,,傳遞的字節(jié)也是不同的?。?
總結(jié):
  • 1,HTTP GET或者POST傳遞的是字節(jié),?數(shù)據(jù)庫保存的也是字節(jié)(譬如500MB空間就是500M字節(jié))
  • 2,,亂碼產(chǎn)生的原因是編碼和解碼的字符集(方式)不同導(dǎo)致的,即對于幾個不同的字節(jié),,在不同的編碼方案下對應(yīng)的字符可能不同,,也可能在某種編碼下有些字節(jié)不存在(這也是亂碼中?產(chǎn)生的原因)
  • 3,,解碼后的字符串在jvm中以Unicode的形式存在
  • 4,,如果jvm中存在的Unicode字符就是你預(yù)期的字符(編碼,解碼的字符集相同或者兼容),,那么沒有任何問題,,如果jvm中存在的字符集不是你預(yù)期的字符,譬如上述例子中jvm中存在的是3個Unicode字符,,你也可以通過取得這3個unicode字符對應(yīng)的3個字節(jié),,然后用UTF-8對這3個字節(jié)進(jìn)行編碼生成新的Unicode字符:漢字“中”
  • 5,ISO8859-1是兼容ASCII的單字節(jié)編碼并且使用了單字節(jié)內(nèi)的所有空間,,在支持ISO-8859-1的系統(tǒng)中傳輸和存儲其他任何編碼的字節(jié)流都不會被拋棄,。換言之,把其他任何編碼的字節(jié)流當(dāng)作ISO-8859-1編碼看待都沒有問題,。

下面的代碼顯示,,使用不同的編碼來Encoder會得到不同的結(jié)果,同時如果Encoder和Decoder不一致或者使用的漢字在編碼ISO-8859-1中不存在時,,都會表現(xiàn)為亂碼的形式,!
Java代碼  收藏代碼
  1. try {    
  2.   
  3.         // 漢字“中”用UTF-8進(jìn)行URLEncode的時候,得到%e4%b8%ad(對應(yīng)的ISO-8859-1的字符是中)  
  4.         String item = new String(new byte[] { (byte0xe4, (byte0xb8, (byte0xad }, "UTF-8");  
  5.         // 中  
  6.         System.out.println(item);  
  7.   
  8.         item = new String(new byte[] { (byte0xe4, (byte0xb8, (byte0xad }, "ISO-8859-1");  
  9.         // 中  
  10.         System.out.println(item);  
  11.   
  12.         System.out.println(new BigInteger("253").toByteArray());  
  13.         System.out.println(Integer.toBinaryString(253));  
  14.   
  15.         // 中  
  16.         item = new String(item.getBytes("ISO_8859_1"), "UTF-8");  
  17.         System.out.println(item);  
  18.         // 中  
  19.         item = new String(item.getBytes("UTF-8"), "ISO_8859_1");  
  20.         System.out.println(item);  
  21.   
  22.         // 漢字中以UTF-8編碼為     %E4%B8%AD(3字節(jié))  
  23.         System.out.println(URLEncoder.encode("中""UTF-8"));    
  24.         // 漢字中以UTF-8編碼為     %3F      (1字節(jié) 這是由于漢字在ISO-8859-1字符集中不存在,,返回的是,?在ISO-8859-1下的編碼)  
  25.         System.out.println(URLEncoder.encode("中""ISO-8859-1"));    
  26.         // 漢字中以UTF-8編碼為     %D6%D0        (2字節(jié))  
  27.         System.out.println(URLEncoder.encode("中""GB2312"));    
  28.             
  29.         // 把漢字中對應(yīng)的UTF-8編碼                 %E4%B8%AD 用UTF-8解碼得到正常的漢字 中  
  30.         System.out.println(URLDecoder.decode("%E4%B8%AD""UTF-8"));    
  31.         // 把漢字中對應(yīng)的ISO-8859-1編碼    %3F       用ISO-8859-1解碼得到?  
  32.         System.out.println(URLDecoder.decode("%3F""ISO-8859-1"));    
  33.         // 把漢字中對應(yīng)的GB2312編碼                 %D6%D0        用GB2312解碼得到正常的漢字 中   
  34.         System.out.println(URLDecoder.decode("%D6%D0""GB2312"));    
  35.         // 把漢字中對應(yīng)的UTF-8編碼                 %E4%B8%AD 用ISO-8859-1解碼  
  36.         // 得到字符中(這個就是所謂的亂碼,其實(shí)是3字節(jié)%E4%B8%AD中每個字節(jié)對應(yīng)的ISO-8859-1中的字符)  
  37.         // ISO-8859-1字符集使用了單字節(jié)內(nèi)的所有空間  
  38.         System.out.println(URLDecoder.decode("%E4%B8%AD""ISO-8859-1"));  
  39.         // 把漢字中對應(yīng)的UTF-8編碼                 %E4%B8%AD 用GB2312解碼  
  40.         // 得到字符涓?,,因?yàn)榍?字節(jié) %E4%B8對應(yīng)的GB2312的字符就是涓,,而第3字節(jié)%AD在GB2312編碼中不存在,,故返回?  
  41.         System.out.println(URLDecoder.decode("%E4%B8%AD""GB2312"));    
  42.     } catch (UnsupportedEncodingException e) {    
  43.         // TODO Auto-generated catch block    
  44.         e.printStackTrace();    
  45.     }    

Tomcat關(guān)于encoding編碼的默認(rèn)設(shè)置以及相關(guān)標(biāo)準(zhǔn):
對于Get請求,,"URI Syntax"規(guī)范規(guī)定HTTP query strings(又叫GET parameters)使用US-ASCII編碼,,所有不在這個編碼范圍內(nèi)的字符,必須經(jīng)常一定的轉(zhuǎn)碼:%61的形式(encode),。又由于ISO-8859-1 and ASCII對于0x20 to 0x7E范圍內(nèi)的字符是兼容的,,大部分的web容器譬如Tomcat容器默認(rèn)使用ISO-8859-1解碼URI中%xx部分的字節(jié)??梢允褂肅onnector中的URIEncoding來修改這個默認(rèn)用來解碼URI中%xx部分字節(jié)的字符集,。URIEncoding要和get請求query string中encode的編碼一直,或者通過設(shè)置Content-Type來告訴容器你使用什么編碼來轉(zhuǎn)碼url中的字符

POST請求應(yīng)該自己通過參數(shù)Content-Type指定所使用的編碼,,由于許多客戶端都沒有設(shè)置一個明確的編碼,,tomcat就默認(rèn)使用ISO-8859-1編碼。注意:用來對URI進(jìn)行解碼的字符集,,Request字符集,,Response字符集的區(qū)別!不同的Request實(shí)現(xiàn)中,,對于上述3個編碼的關(guān)系是不同的

對于POST請求,,ISO-8859-1是Servlet規(guī)范中定義的HTTP request和response的默認(rèn)編碼。如果request或者response的字符集沒有被設(shè)定,,那么Servlet規(guī)范指定使用編碼ISO-8859-1,,請求和相應(yīng)指定編碼是通過Content-Type響應(yīng)頭來設(shè)定的。

如果Get,、Post請求沒有通過Content-Type來設(shè)置編碼的話,,Tomcat默認(rèn)使用ISO-8859-1編碼??梢允褂肧etCharacterEncodingFilter來修改Tomcat請求的默認(rèn)編碼設(shè)置(encoding:使用的編碼,, ignore:true,,不管客戶端是否指定了編碼都進(jìn)行設(shè)置, false,,只有在客戶端沒有指定編碼的時候才進(jìn)行編碼設(shè)置,, 默認(rèn)true)
注意:一般這個Filter建議放在所有Filter的最前面(Servlet3.0之前基于filter-mapping在web.xml中的順序,, Servlet3.0之后有參數(shù)可以指定順序),因?yàn)橐坏膔equest里面取值后,,再進(jìn)行設(shè)置的話,,設(shè)置無效。因?yàn)樵诘谝淮螐膔equest取值時,,tomcat會把querystring或者post方式提交的變量,,用指定的編碼轉(zhuǎn)成從parameters數(shù)組,,以后直接從這個數(shù)組中獲取相應(yīng)參數(shù)的值!

到處都使用UTF-8建議操作:
  • 1,, Set URIEncoding="UTF-8" on your <Connector> in server.xml.使得Tomcat Http Get請求使用UTF-8編碼
  • 2,, Use a character encoding filter with the default encoding set to UTF-8. 由于很多請求本身沒有指定編碼, Tomcat默認(rèn)使用ISO-8859-1編碼作為HttpServletRequest的編碼,,通過filter修改
  • 3,, Change all your JSPs to include charset name in their contentType. For example, use <%@page contentType="text/html; charset=UTF-8" %> for the usual JSP pages and <jsp:directive.page contentType="text/html; charset=UTF-8" /> for the pages in XML syntax (aka JSP Documents). 指定Jsp頁面使用的編碼
  • 4, Change all your servlets to set the content type for responses and to include charset name in the content type to be UTF-8. Use response.setContentType("text/html; charset=UTF-8") or response.setCharacterEncoding("UTF-8"). 設(shè)置Response返回結(jié)果的編碼
  • 5, Change any content-generation libraries you use (Velocity, Freemarker, etc.) to use UTF-8 and to specify UTF-8 in the content type of the responses that they generate.指定所有模版引擎佘勇的編碼
  • 6, Disable any valves or filters that may read request parameters before your character encoding filter or jsp page has a chance to set the encoding to UTF-8. SetCharacterEncodingFilter一般要放置在第一位,,否則可能無效


Java代碼  收藏代碼
  1. /* 
  2. * Licensed to the Apache Software Foundation (ASF) under one or more 
  3. * contributor license agreements.  See the NOTICE file distributed with 
  4. * this work for additional information regarding copyright ownership. 
  5. * The ASF licenses this file to You under the Apache License, Version 2.0 
  6. * (the "License"); you may not use this file except in compliance with 
  7. * the License.  You may obtain a copy of the License at 
  8. * 
  9. *     http://www./licenses/LICENSE-2.0 
  10. * 
  11. * Unless required by applicable law or agreed to in writing, software 
  12. * distributed under the License is distributed on an "AS IS" BASIS, 
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
  14. * See the License for the specific language governing permissions and 
  15. * limitations under the License. 
  16. */  
  17.   
  18. package filters;  
  19.   
  20.   
  21. import java.io.IOException;  
  22. import javax.servlet.Filter;  
  23. import javax.servlet.FilterChain;  
  24. import javax.servlet.FilterConfig;  
  25. import javax.servlet.ServletException;  
  26. import javax.servlet.ServletRequest;  
  27. import javax.servlet.ServletResponse;  
  28.   
  29.   
  30. /** 
  31.  * <p>Example filter that sets the character encoding to be used in parsing the 
  32.  * incoming request, either unconditionally or only if the client did not 
  33.  * specify a character encoding.  Configuration of this filter is based on 
  34.  * the following initialization parameters:</p> 
  35.  * <ul> 
  36.  * <li><strong>encoding</strong> - The character encoding to be configured 
  37.  *     for this request, either conditionally or unconditionally based on 
  38.  *     the <code>ignore</code> initialization parameter.  This parameter 
  39.  *     is required, so there is no default.</li> 
  40.  * <li><strong>ignore</strong> - If set to "true", any character encoding 
  41.  *     specified by the client is ignored, and the value returned by the 
  42.  *     <code>selectEncoding()</code> method is set.  If set to "false, 
  43.  *     <code>selectEncoding()</code> is called <strong>only</strong> if the 
  44.  *     client has not already specified an encoding.  By default, this 
  45.  *     parameter is set to "true".</li> 
  46.  * </ul> 
  47.  * 
  48.  * <p>Although this filter can be used unchanged, it is also easy to 
  49.  * subclass it and make the <code>selectEncoding()</code> method more 
  50.  * intelligent about what encoding to choose, based on characteristics of 
  51.  * the incoming request (such as the values of the <code>Accept-Language</code> 
  52.  * and <code>User-Agent</code> headers, or a value stashed in the current 
  53.  * user's session.</p> 
  54.  * 
  55.  * @author Craig McClanahan 
  56.  * @version $Id: SetCharacterEncodingFilter.java 939521 2010-04-30 00:16:33Z kkolinko $ 
  57.  */  
  58.   
  59. public class SetCharacterEncodingFilter implements Filter {  
  60.   
  61.   
  62.     // ----------------------------------------------------- Instance Variables  
  63.   
  64.   
  65.     /** 
  66.      * The default character encoding to set for requests that pass through 
  67.      * this filter. 
  68.      */  
  69.     protected String encoding = null;  
  70.   
  71.   
  72.     /** 
  73.      * The filter configuration object we are associated with.  If this value 
  74.      * is null, this filter instance is not currently configured. 
  75.      */  
  76.     protected FilterConfig filterConfig = null;  
  77.   
  78.   
  79.     /** 
  80.      * Should a character encoding specified by the client be ignored? 
  81.      */  
  82.     protected boolean ignore = true;  
  83.   
  84.   
  85.     // --------------------------------------------------------- Public Methods  
  86.   
  87.   
  88.     /** 
  89.      * Take this filter out of service. 
  90.      */  
  91.     public void destroy() {  
  92.   
  93.         this.encoding = null;  
  94.         this.filterConfig = null;  
  95.   
  96.     }  
  97.   
  98.   
  99.     /** 
  100.      * Select and set (if specified) the character encoding to be used to 
  101.      * interpret request parameters for this request. 
  102.      * 
  103.      * @param request The servlet request we are processing 
  104.      * @param result The servlet response we are creating 
  105.      * @param chain The filter chain we are processing 
  106.      * 
  107.      * @exception IOException if an input/output error occurs 
  108.      * @exception ServletException if a servlet error occurs 
  109.      */  
  110.     public void doFilter(ServletRequest request, ServletResponse response,  
  111.                          FilterChain chain)  
  112.     throws IOException, ServletException {  
  113.   
  114.         // Conditionally select and set the character encoding to be used  
  115.         if (ignore || (request.getCharacterEncoding() == null)) {  
  116.             String encoding = selectEncoding(request);  
  117.             if (encoding != null)  
  118.                 request.setCharacterEncoding(encoding);  
  119.         }  
  120.   
  121.     // Pass control on to the next filter  
  122.         chain.doFilter(request, response);  
  123.   
  124.     }  
  125.   
  126.   
  127.     /** 
  128.      * Place this filter into service. 
  129.      * 
  130.      * @param filterConfig The filter configuration object 
  131.      */  
  132.     public void init(FilterConfig filterConfig) throws ServletException {  
  133.   
  134.     this.filterConfig = filterConfig;  
  135.         this.encoding = filterConfig.getInitParameter("encoding");  
  136.         String value = filterConfig.getInitParameter("ignore");  
  137.         if (value == null)  
  138.             this.ignore = true;  
  139.         else if (value.equalsIgnoreCase("true"))  
  140.             this.ignore = true;  
  141.         else if (value.equalsIgnoreCase("yes"))  
  142.             this.ignore = true;  
  143.         else  
  144.             this.ignore = false;  
  145.   
  146.     }  
  147.   
  148.   
  149.     // ------------------------------------------------------ Protected Methods  
  150.   
  151.   
  152.     /** 
  153.      * Select an appropriate character encoding to be used, based on the 
  154.      * characteristics of the current request and/or filter initialization 
  155.      * parameters.  If no character encoding should be set, return 
  156.      * <code>null</code>. 
  157.      * <p> 
  158.      * The default implementation unconditionally returns the value configured 
  159.      * by the <strong>encoding</strong> initialization parameter for this 
  160.      * filter. 
  161.      * 
  162.      * @param request The servlet request we are processing 
  163.      */  
  164.     protected String selectEncoding(ServletRequest request) {  
  165.   
  166.         return (this.encoding);  
  167.   
  168.     }  
  169.   
  170.   
  171. }  


參考:tomcat wiki faq Character Encoding Issues
Apache Tomcat Configuration Reference - The HTTP Connector

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多