-
风自在
有以下两种方式:
-
发送方进行两次URLEncode编码,接收方只进行一次URLDecode解码
request.setAttribute("xxx",URLEncoder.encode(URLEncoder.encode("中文测试", "utf-8"),"utf-8")); URLDecoder.decode(request.getParameter("xxx"), "UTF-8") )
-
接收方进行编码转换
String xxx=new String(request.getPatameter("xxx").getBytes("ISO_8859-1"),"UTF-8");
-
发送方进行两次URLEncode编码,接收方只进行一次URLDecode解码
-