Solutions to JSP display Chinese problems

Source: Internet
Author: User

Apache1.3.9 and jserv, gnujsp1.0, jdk1.2.2, jsdk2.0 are installed in Win98 these two days.
Chinese characters cannot be displayed normally. Either garbled or error.
I summarized the following methods as a reminder.
1: Modify region settings: select the region settings in the control panel and set it to English (US )? Nbsp;
Then restart. Everything works.
2: add a statement to the JSP page:
<% @ Page contenttype = "text/html; charset = gb2312" %>?
The SP display is normal.
3: added when compiling Servlet and JSP Code. Compile servlet usage
Javac-encoding iso8859_1 myservlet. Java
In the zone configuration file of JSP, modify the compilation parameters:
Compiler = builtin-javac-encoding iso8859_1
After using this method, you can display Chinese characters without any other changes.
4: The most practical method, in the Servlet Source ProgramAdd the code transformation statement. For example
Try {
Out. println (New (new string ("I Love You"). getbytes ("GBK"), "iso8859_1 "))
}
Catch (unsupportedencodingexception E)
{
.......
}
When using this method, be sure to capture unsupportedencodingexception
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.