問題:不能在資料庫中插入中文,資料庫中及背景代碼都配置了“utf-8”,但還是出現了亂碼。
解決:在連接配接資料庫的參數中加入:useUnicode=true&characterEncoding=utf-8 。
如:jdbc:mysql://localhost:3306/usa?useUnicode=true&characterEncoding=utf-8 。
問題:不能在資料庫中插入中文,資料庫中及背景代碼都配置了“utf-8”,但還是出現了亂碼。
解決:在連接配接資料庫的參數中加入:useUnicode=true&characterEncoding=utf-8 。
如:jdbc:mysql://localhost:3306/usa?useUnicode=true&characterEncoding=utf-8 。