页面值传入后台出现中文乱码
1、form表单提交到后台
检查页面form的提交方式
通过form传入后台,提交方式分为post和get两种。两者的区别需要通过提交表单后才看得出来,主要是在数据发送方式和接收方式上。Post和Get都是表单属性Method的可选值,Method的默认值为Get,两者的主要区别在于:
2、后台转码处理
String userName=request.getParameter("userName");
try {
userName=java.net.URLDecoder.decode(userName,"UTF-8");
}catch (UnsupportedEncodingException e) {
log4j.error(e.getMessage());
e.printStackTrace();
}
by archie
posted on 2011-01-21 18:22 archie2010 阅读(3360) 评论(0) 编辑 收藏 举报