日期:2014-05-16  浏览次数:20454 次

jsp中get方式字符转换
在jsp中可能会遇到get方式传值,当遇到中文时就需要对其进行转换
我所知道的一种解决方案
String name=request.getParameter("name");

name = new String(name.getBytes("ISO-8859-1"),"UTF-8");
这样就可以了