|
Difference between encodeURL and sendRiderct methods |
|
|
This J2EE tip demonstrates the difference in use of between encodeURL and
sendRiderct. Further it also demonstrates the neccesiaty for encodeURL.
In order for the URL's to be in universal specificied format it must be
specified in the return type of encodeURL which is then passed on to
the sendRedirect.
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class EncodeURL extends HttpServlet {
public void doGet(HttpServletRequest request ,
HttpServletResponse response)
throws ServletException , IOException {
response.setContentType("text/plain");
PrintWriter out = response.getWriter();
String encode = response.encodeURL("http://www.google.com");
response.sendRedirect(encode);
}
public void doPost(HttpServletRequest request,
HttpServletResponse response)
throws ServletException , IOException {
doGet(request , response);
}
}
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.