get or post处理中文乱码
2017-08-29 本文已影响0人
小风果果
if(request.getMethod().toUpperCase().equals("GET")){
patientName=URLDecoder.decode(patientName,"utf-8");
}else{
patientName=newString(patientName.getBytes("iso8859-1"),"UTF-8");
}
if(request.getMethod().toUpperCase().equals("GET")){
patientName=URLDecoder.decode(patientName,"utf-8");
}else{
patientName=newString(patientName.getBytes("iso8859-1"),"UTF-8");
}