1. 程式人生 > >連線Mysql亂碼問題

連線Mysql亂碼問題

開始學習mysql資料庫事遇到了這樣的問題,eclipse中向mysql資料庫中寫入中文時出現了亂碼問題,

解決辦法是:

            連線資料庫時,及DriverManager.getConnection(URL),中的URL可以這樣寫。。。。。。。。

            如: 

 

A、 Connection con = DriverManager.getConnection("jdbc:mysql://localhost/student?
    useUnicode=true&characterEncoding=gbk",    "root", ""); 

 

B、con=DriverManager.getConnection("jdbc:mysql://localhost:3306/itat_msg?user=itat&password=itat123&useUnicode=true&characterEncoding=UTF-8");