当前位置: 代码迷 >> Web前端 >> prototype返回中文乱码有关问题
  详细解决方案

prototype返回中文乱码有关问题

热度:163   发布时间:2013-01-25 15:55:29.0
prototype返回中文乱码问题
1.get方式
jsp页面:
System.out.println(new String(request.getParameter("name").getBytes("iso8859-1"),"UTF-8"));

2,post方式
jsp页面:
request.setCharacterEncoding("UTF-8");
    System.out.println(request.getParameter("name"));

  相关解决方案