使用struts1做得一个注册系统。为什么中文写入数据库是乱码啊?获取连接的方法:
public static Connection getCon() {
Connection con=null;
try {
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost:3306/struts1?user=root&password=1997520";
con=DriverManager.getConnection(url);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return con;
}
需要设置数据库编码么?
MYseleit
望远
迷醉