Java Web Development-Display the Request parameter in the browser address bar as Chinese

Source: Internet
Author: User

Want to implement: when the JSP page initiates the request, or the Servlet jumps, the parameters in the address bar can be displayed in Chinese.

In general, the URL address in the browser address bar in order to adapt to a different browser, the URL address information will be transcoded to "ISO 8859-1", the Chinese parameters will be transcoded.

But now we want to display the Chinese parameter in the browser address bar, you can use the following methods:

String url = "http://localhost:8080/test.jsp?notice="     + java.net.URLEncoder.encode("这是一段中文信息", "UTF-8");response.sendRedirect(url);

The principle is very simple, using the java.net.URLEncoder static method in the class to encode() implement the URL address transcoding.

Java Web Development-Display the Request parameter in the browser address bar as Chinese

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.