test.jsp 391 B

1234567891011121314151617181920212223
  1. <%@page import="java.net.URLDecoder"%>
  2. <%
  3. String url = request.getParameter("text");
  4. System.out.println(url);
  5. String strDecoding = URLDecoder.decode(url, "utf-8");
  6. System.out.println("============= " + strDecoding);
  7. response.flushBuffer();
  8. %>
  9. <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <script type="text/javascript">
  13. alert("<%=url%>");
  14. </script>
  15. </head>
  16. <body>
  17. </body>
  18. </html>