Whenever a user logs in(into an app which I've been working on), he will be redirected to his home page, which needs to be refreshed one time. I have to write the code in .java file to basically refresh the browser.

How can this be achieved with java. I know it can be done using javascript, but I have to achieve the above in a .java file. Any ideas ???

link|improve this question

Java runs on the server. JavaScript runs in the browser. It shouldn't be that hard to figure out why it's easy to make JavaScript do what you want, but not Java. – Matt Ball Dec 13 '11 at 5:48
Are you talking about Java on the server side or client side? – Arman Dec 13 '11 at 5:49
Yea it is easy to do it in javascript, but I am trying to achieve the same through java(which, am not sure on how to) – Ajj Dec 13 '11 at 5:50
feedback

3 Answers

up vote 1 down vote accepted

Just use code like this:

response.setHeader("Refresh", "0; URL=http://your-current-page");
link|improve this answer
feedback

You want to set a cookie that will cause a page refresh.

For Java use this: http://www.rgagnon.com/javadetails/java-0180.html

For the homepage JavaScript use http://techpatterns.com/downloads/javascript_cookies.php

link|improve this answer
feedback

You can only refresh the browser window using client side scripts. eg: html, javascript, flash, applet etc. You can use java methods to refresh browser. eg : setHeader

link|improve this answer
Will give a try – Ajj Dec 13 '11 at 6:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.