4

How would I get the full URL of a JSP page.

For example the URL might be http://www.example.com/news.do/?language=nl&country=NL

If I do things like the following I always get news.jsp and not .do

out.print(request.getServletPath()); out.print(request.getRequestURI()); out.print(request.getRequest()); out.print(request.getContextPath());

goose84
  • 276
  • 1
  • 2
  • 14

3 Answers3

6

You need to call request.getRequestURL():

Reconstructs the URL the client used to make the request. The returned URL contains a protocol, server name, port number, and server path, but it does not include query string parameters.

Bozho
  • 572,413
  • 138
  • 1,043
  • 1,132
5

Given URL = http:/localhost:8080/sample/url.jsp?id1=something&id2=something&id3=something

request.getQueryString();

it returns id1=something&id2=something&id3=something

See This

Manoj Kumar
  • 715
  • 2
  • 8
  • 27
0

I found a solution. It may not be perfect solution. But it working solution.

String qs = request.getQueryString();
String foo = request.getRequestURL().toString()+"?"+qs;
gsm
  • 1,854
  • 11
  • 15