URLエンコーディングとは何か知りたいです。2 つの jsp ページと 1 つのサーブレットがあります。アプリケーションを実行すると、表示される URL は次のとおりです。
http://localhost:8080/myproject/index.jsp
どこ
index.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 エンコーディングの意味は何ですか? 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