连接数据库
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/messagebook?useUnicode=true&characterEncoding=GB2312","root","6573251");
中文问题
out.println(new String((rs.getString(3)).getBytes("ISO_8859_1"),"GB2312"));