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
  • 282
  • 1
  • 2
  • 15

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
  • 588,226
  • 146
  • 1,060
  • 1,140
6

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
  • 745
  • 2
  • 8
  • 29
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
  • 2,348
  • 17
  • 16