String rawValue= request.getParameter("yourParam"); byte[] bys=rawValue.getBytes("ISO-8859-1"); String value=new String(bys,"gb2312");
?