I want to know that what is url encoding. I have 2 jsp pages and one servlet. When I run the application the url displayed is :
http://localhost:8080/myproject/index.jsp
where
index.jsp :
<form action="Myservlet" method="post">
<input type="text" name="mytext" id="mytext"/>
<input type="submit" value="submit"/>
</form>
after the submit button is clicked the URL displayed is :
http://localhost:8080/myproject/Myservlet
What is the meaning of URL encoding? How can I encode url?
From index.jsp
goes to Myservlet
then to result.jsp
Myservet#doPost // Do I need to do URL encoding here? If yes how ?
fetching data from db.......
....................
String nextJSP = "/result.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
dispatcher.forward(request,response);
result.jsp
displays data here
I think you have misundersting here. Neither
HTML Form Encoding
norURL Re-writing
is for what you want to achieve.If you want to achieve like .
For example: instead of typing http://localhost:8080/search.jsp?xxx the user would see http:/localhost:8080/search?xxx
You can create a servlet mapping like this:
The url-pattern must be edited to suit your needs. You need of course to create the servlet in order to map the url to the actual jsp. This technique is used by most of the MVC frameworks.
Read More on How to develop JSP/Servlets Web App using MVC pattern?
Use
java.net.URLEncoder.encode(s, "UTF-8")
wheres
is the string to encode.This is required whenever we send text as path segments, query string arguments, etc...
Example: see the documentation
There are two types of encoding: HTML form encoding and URL re-writing.
In form encoding, the URL string is converted into a valid ASCII format that's Internet-ready. From the URLEncoder.encode(String, String) docs:
The second kind is URL rewriting. The URL string is encoded with a session id in case the client browser doesn't support (or has disabled) cookies or session tracking. From the HttpServletResponse.encodeURL(String) docs: