After HttpServletResponse.sendRedirect(String url) method calling I'm getting some response. How can I get this respose? sendRedirect returns void.
Asked
Active
Viewed 1,368 times
0
-
This is a strange question. Aren't you basically trying to ask something like as already answered here? http://stackoverflow.com/questions/6932369/inputstream-from-a-url/ – BalusC Sep 14 '15 at 13:06
1 Answers
0
HttpServletResponse.sendRedirect(String url) responds to the browser instructing it to access the specified URL.

dimplex
- 494
- 5
- 9
-
But if I need information, which displayed on redirected page, what i have to do? – Ivan Timoshin Sep 14 '15 at 12:59
-
This information is sent to the browser, not to server. It is unreachable for you (server side). If you need information, you have to make the browser send it to you. – dimplex Sep 14 '15 at 13:03