1234567891011121314151617181920212223 |
- <%@page import="java.net.URLDecoder"%>
- <%
- String url = request.getParameter("text");
- System.out.println(url);
-
-
- String strDecoding = URLDecoder.decode(url, "utf-8");
-
- System.out.println("============= " + strDecoding);
- response.flushBuffer();
- %>
- <!DOCTYPE html>
- <html>
- <head>
- <script type="text/javascript">
- alert("<%=url%>");
- </script>
- </head>
- <body>
- </body>
- </html>
|