jsp怎么处理表单里得到的乱码?
我从表单里获得的字母和数字都能正确显示,汉字却全是乱码!
这个方法很有用
jsp中文乱码解决方法request.setCharacterEncoding("gb2312");
1-设置jsp页面<%@ page contentType="text/html; charset=gb2312" %>
2-表单提交后接收字符使用request.setCharacterEncoding("gb2312"); 或者使用servelet过滤器的方法。
mysql中文乱码解决方法
1-使用mysql5.0时在设置向导中的“please select the default character set” 选择“manual selected default character set/collaction”这项,在字符集 中选择使用gb2312字符集!
2-在jsp中进行数据库连接时使用的连接字符串 "jdbc:mysql://localhost/database?useUnicode=true&characterEncoding=gb2312"