首页 > 编程 > JSP > 正文

如何解决ht、ml网页编码导致jsp页面乱码

2019-11-02 15:28:45
字体:
来源:转载
供稿:网友

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"));

经过这层转换,可以处理乱码问题

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表