中文乱码解决
---超链接
"http://localhost:8080/test.jsp?para"=+encodeURI(encodeURI(“中文"))
----test.jsp
String para = request.getParameter("para");
para = java.net.URLDecoder.decode(para,'utf-8');
中文乱码解决
---超链接
"http://localhost:8080/test.jsp?para"=+encodeURI(encodeURI(“中文"))
----test.jsp
String para = request.getParameter("para");
para = java.net.URLDecoder.decode(para,'utf-8');