我想知道什么是url encoding。我有 2 个 jsp 页面和一个 servlet。当我运行应用程序时,显示的 url 是:
http://localhost:8080/myproject/index.jsp
在哪里
索引.jsp:
<form action="Myservlet" method="post">
<input type="text" name="mytext" id="mytext"/>
<input type="submit" value="submit"/>
</form>
单击提交按钮后,显示的 URL 为:
http://localhost:8080/myproject/Myservlet
URL编码的含义是什么?如何编码网址?
从index.jsp
去 到Myservlet
然后 到result.jsp
Myservet#doPost // 我需要在这里做 URL 编码吗?如果是怎么办?
fetching data from db.......
....................
String nextJSP = "/result.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
dispatcher.forward(request,response);
结果.jsp
displays data here