JAVA设置字符串编码

当有些数据传值过来编码是乱的情况可以使用此方法进行编码转换

String value = new String (request.getParameter("name").getBytes("ISO-8859-1"),"UTF-8");