JSP connection to MySQL garbled Problem Solution

Source: Internet
Author: User
If JSP is used to connect to the MySQL database, garbled characters may occur during Chinese access. A bunch of "? ",
The following changes must be made:
1. connection string:
String mysqldriver = "org. gjt. Mm. MySQL. Driver"; // database driver
String mysqlurl = "JDBC: mysql: // localhost: 3306/BBS? Useunicode = true & characterencoding = gb2312 "; // database connection string
String mysqluser = "root"; // database username
String mysqlpsw = ""; // Database Password

Class. forname ("org. gjt. Mm. MySQL. Driver"). newinstance (); // register the driver
Conn = drivermanager. getconnection (mysqlurl, mysqluser, mysqlpsw); // get the connection

2. Request object settings:
<% Request. setcharacterencoding ("gb2312"); %>
Set the character set of the jsp request object to support Chinese Characters

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.