时间:2021-07-01 10:21:17 帮助过:3人阅读
String sql = "select * from user where username=? and password=?";
但是在navicat里面直接查询就能显示,如下图:
这说明了sql语句的中文并没有能正确转化
最后找到了解决办法,在连接数据库的url后面添加?useUnicode=true&characterEncoding=utf8
"jdbc:mysql://localhost:3306/sql_injection?useUnicode=true&characterEncoding=utf8";
SQL查询语句中参数带有中文查询不到结果
标签:参数 pre str utf8 amp com password 语句 连接数据库