当前位置: 代码迷 >> 综合 >> Java插入中文到数据库中文变成问号???解决办法
  详细解决方案

Java插入中文到数据库中文变成问号???解决办法

热度:11   发布时间:2023-10-09 16:58:11.0


在url后面添加参数:url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8


DriverManager.getConnection("jdbc:mysql://localhost:3306/students?useUnicode=true&characterEncoding=utf-8", "root", "");

DriverManager.getConnection("jdbc:mysql://localhost:3306/students", "root", "");