URL里中文参数值的读取方法
String rawValue= request.getParameter("yourParam"); byte[] bys=rawValue.getBytes("ISO-8859-1"); String value=new String(bys,"gb2312");
?