使用struts1做得一個(gè)注冊(cè)系統(tǒng)。為什么中文寫(xiě)入數(shù)據(jù)庫(kù)是亂碼???獲取連接的方法: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; }需要設(shè)置數(shù)據(jù)庫(kù)編碼么?