日期:2014-05-16  浏览次数:20305 次

jsp提交中文乱码
表单使用Post方式提交后接收到的乱码问题
接受参数时进行编码转换
----------------------------
String str = new String(request.getParameter("something").getBytes("ISO-8859-1"),"utf-8") ;