JSP Address bar Pass Chinese display garbled solution sharing _jsp programming

Source: Internet
Author: User
Tags tomcat

test1.jsp page:

Copy Code code as follows:

<%@ page language= "java" import= "java.util.*" pageencoding= "Utf-8"%>
<! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" >
<title>my JSP ' test1.jsp ' starting page</title>
<body>
<a href= "Test2.jsp?name=<%=java.net.urlencoder.encode (" Wang Yunpeng "," Utf-8 ")%>" >test2.jsp</a>
</body>


test2.jsp page:

Copy Code code as follows:

<%@ page language= "java" import= "java.util.*" pageencoding= "Utf-8"%>
<%
String name = Request.getparameter ("name");//get Tomcat ' s string formatter is iso-8859-1
byte[] names = Java.net.URLEncoder.encode (name, "Iso-8859-1"). GetBytes ();//get inner tomcat ' s byte content
name = new string (names, "Utf-8");//get url ' s String formatter is Utf-8
Name = Java.net.URLDecoder.decode (name, "Utf-8");//decode string to Chinese word
%>

<! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" >

<title>my JSP ' test2.jsp ' starting page</title>


<body>
Name:<%=name%>
</body>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.