html页面中这段不起眼的代码<meta http-equiv="Content-Type" content="text/html; charset=GBK">,错把如果charset=GBK设置为charset=UTF-8的话,即使jsp页面做了中文乱码处理,还是会出现乱码
jsp中文转码如下:
String name = new String(request.getParameter("uname").getBytes(
"ISO-8859-1"));
经过这层转换,可以处理乱码问题
新闻热点
疑难解答