jsp中request.getParameter()中文乱码问题解决
2020-11-18 19:06
标签:style blog class code java javascript color get string set rgb 关于使用request.getParameter()得到中文乱码的问题,在网上查找了一天终于找到了一个解决方案,是一个比较笨的方法,要在每个使用request.getParameter()的地方添加如下代码,代码如下: PS:对于另外一种方法,就是使用 我试过,不起作用,具体原因我也不知道是为什么,希望有大神可以解答一下。 jsp中request.getParameter()中文乱码问题解决,搜素材,soscw.com jsp中request.getParameter()中文乱码问题解决 标签:style blog class code java javascript color get string set rgb 原文地址:http://www.cnblogs.com/shenxianjushi/p/3701519.html1 String name=request.getParameter("name");
2 if(name!=null){
3 name=new String(name.getBytes("ISO8859_1"),"utf-8");
4 }
request.setCharacterEncoding("utf-8");
上一篇:web 乱码摘抄
下一篇:jquery 操作实例一
文章标题:jsp中request.getParameter()中文乱码问题解决
文章链接:http://soscw.com/index.php/essay/21903.html