JSP garbled Summary

Source: Internet
Author: User

When learning JSP, sometimes the Page forms are submitted with garbled characters

Make the following changes to see if there will be garbled characters:

(I am using a UTF-8 code // gb2312)

1. Modify the workspace encoding in myeclipse

 

Preferences --- >>>

 

2. Modify the encoding of the relevant file. Generally, after the workspace encoding is modified, the corresponding file will automatically adjust its default encoding.

Preferences --- >>>

 

3. Page Import

<% @ Page Language = "Java" pageencoding = "UTF-8" %>

 

4. Add the

<Meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8">

 

5. Change the form submission method to method = "Post"

6. You can also directly modify the server's encoding settings (Tomcat server ),

There is a CONF file in the tomcat installation directory, which contains a server. xml file

Modification:

<Connector Port = "8080" protocol = "HTTP/1.1"

Connectiontimeout = "20000"

Redirectport = "8443" type = "regxph" text = "yourobjectname"/>

Change

<Connector Port = "8080" protocol = "HTTP/1.1"

Connectiontimeout = "20000"

Redirectport = "8443"

Url = "UTF-8" usebodyencodingforuri = "true"/>

 

Summary

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.