包含%>

如果传参中包含%><?等特殊字符 需要编码处理
页面端 JS 
                var postString = encodeURI(document.getElementById("postStringAll").value, "UTF-8"); //编码
                
后台端  String postString =java.net.URLDecoder.decode(f.getPostString(),"UTF-8");