从jsp页面get传值到另一个jsp页面出现乱码
程序员文章站
2022-06-22 14:53:31
从jsp页面get传值到另一个jsp页面出现乱码。
1、在发送get请求的jsp页面使用encodeURI(URL,"utf-8");
2、在接收参数的js...
从jsp页面get传值到另一个jsp页面出现乱码。
1、在发送get请求的jsp页面使用encodeURI(URL,"utf-8");
2、在接收参数的jsp页面使用
String name = request.getParameter("name");
byte bs[] = name.getBytes("iso-8859-1");
name = new String(bs,"utf-8");
注:页面编码格式不受影响,我的页面都是GBK编码