The method of the previous handling Tomcat4 is found in Tomcat5 cannot be applied to the request directly through the URL, and the information is found to find the most perfect solution. It doesn't have to be converted every place, and it is normal from GET, and POST. Write a document, posted, I hope that people with the same problem are no longer like I am just like I am just like me :-) Upload file has problems, I have to post it directly, ugly: - -------------------------------------------------- --------- Tomcat 5 Chinese problem author: kiss__sky@163.com ------------------- Problem Description: 1 Form Submitted data, with request The string returned by .GetParameter ("xxx") is garbled or? ? 2 Directly via URL such as http: ///localhost/a.jsp? Name = China, such GET requests are garbled when using Request. GetParameter ("name"); Press Tomcat4 to set Filter Or use Request.setCharacterencoding ("GBK"); no matter how this: 1 Tomcat's J2EE implementation, the process parameters submitted to the form of the POST mode prompt to process the request for the 2 Tomcat to the GET method. When the Query-String is handled, the POST method is different. (Different from Tomcat4, set the setcharacterenceeEncoding ("GBK"). Solution: First all JSP files are plus: <% @ page contentType = "text / html; charset = GB2312"%> 1 Implement a filter. Set the processing character set to GBK. (There is a complete example in Tomcat's WebApps / Servlet-Examples directory. Please refer to Web.xml and setcharacterencodingfilter configuration.) 1) Just install the% Tomcat installation directory% / WebApps / servlets-example / web-inf / class / filters The /SetCharacterencodingFilter.class file is copied to your webapp directory / filters, if there is no Filters directory, create one. 2) In your web.xml, add the following lines:
Set Character Encoding
Filters.SetCharacterencodingfilter
ENCODING
GBK
Set Character Encoding
/ *
3) Finish .2 GET method solution 1) Open Tomcat's server.xml file, find
Blocks, add as follows:
Uriencoding = "GBK"
Complete should be as follows:
Port = "80" maxthreads = "150" minsparethreads = "25" maxsparethreads = "75"
Enablelookups = "false" redirectport = "8443" acceptcount = "100"
Debug = "0" ConnectionTimeout = "20000"
DisableUploadTimeout = "True"
Uriencoding = "GBK"
/>
2) Restart Tomcat, everything OK. Perform the following JSP page page test is successful
<% @ Page ContentType = "Text / HTML; Charset = GB2312"%> <% @ page import = "java.util. *"%> <% string q = request.getParameter ("q"); q = q = = NULL? "No value": q;%> you submitted: <% = q%>
Test Results If you enter a text box or a hyperlink will display: You submit "China", explain success !!!!! Special thanks below this post, help me solve Chinese problems. Finally, I wish you all good luck !!! Reference URL: http://www.javaworld.com.tw/jute/post/view? BID = 9 & id = 44042 & sty = 1 & tpg = 1 & agn = 0