JDBC向数据库插入数据出现乱码问题的解决方法

修改URL属性(注意?后面用&连接起来的属性的设置):
private static final String URL = “jdbc:mysql://localhost:3306/book_management_system?useUnicode=true&characterEncoding=utf8
&useSSL=false
&serverTimezone=Hongkong”;

你可能感兴趣的:(数据库实用技术)