MySQL報錯:Cause: java.sql.SQLException: Incorrect string value: '\xE6\x9D\xA8","...' for column 'obj_v

原因:你的mysql數據庫中該字段不是utf8或utf8mb4編碼,在該字段插入漢字或其他多字節編碼時出現亂碼 解決方案: 1、查詢數據庫版本: select version(); 2、查詢數據庫編碼: 2、停掉數據庫: service mysqld stop 3、將數據庫設置爲utf8mb4編碼: 增加配置文件: collation_server = utf8mb4_general_ci cha
相關文章
相關標籤/搜索