JSP Get URL is used to get the url of the current JSP page. The HttpServletRequest interface has a method getRequestURL ( ) that return the url of the current page.
Understand with Example
The Tutorial illustrate an example from 'JSP Get URL'. To understand the example we create a getUrl.jsp that include a scriptlet. Inside the Scriptlet we have used the method getRequestURL that gives you the URL of the current JSP page.
<%=request.getRequestURL()%> : The method is used to obtain the URL of the current JSP page.
Here is the code of getUrl.jsp
| <html> <head> <title>Get URL</title> </head> <h2>Get URL of Current JSP</h2> URL is: <font color="red"><%=request.getRequestURL()%></font> </html> |
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: JSP Get URL View All Comments
Post your Comment