就是字符xxx,另外如果我数据库里的值是123,打出来的却是qrs

解决方案 »

  1.   

    试试
    <%@ page language="java" contentType="text/html; charset=GB2312"%>

    DriverManager.getConnection("jdbc:mysql://localhost:3306/test?user=root&password=&useUnicode=true&characterEncoding=gb2312");
      

  2.   

    我也碰到过
    是这样解决的
    jbuilder里面连接数据库的时候用
    String url ="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=gb2312";
    这样就行了。<%@ page contentType="text/html; charset=GBK" %>这句也要有。