欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

get和post方法的中文处理

程序员文章站 2022-05-09 10:56:02
...

get

 因为get请求的参数在请求行上,我们不能像解决post请求那样使用 request.setCharacterEncoding(“UTF-8”)
 解决方式如下
“`
String bname = request.getParameter(“bname”);
bname = new String(bname .getBytes(“iso8859-1”),”utf-8”);

post

//post请求方式要用这种方法转码
    request.setCharacterEncoding("UTF-8");