Link to home
Start Free TrialLog in
Avatar of CtrlCtrlV
CtrlCtrlV

asked on

a sleep method or a check if a page is loaded method

Hello All,

Is it there a method in jsp that can check if a page is entirely loaded?
Or a sleep method that stops execution for a few seconds would also suffice.Btw im not using threads.

Thanks
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

In what context do you need this?

If you need the page to load 100% before you do something, you can put some javascript right at the bottom of the page, then this will only fire when the page is completely loaded into the browser...

Can you give more information, or an example of why and where you would be using this?

to do the sleep method, you can do:

  <%
      try { Thread.sleep( 2000 ) ; } catch( InterruptedException ex ) { }
  %>

to sleep for 2 seconds...
but of course, if you sleep inside the jsp, then the page will not be fully sent to the user until it has finished sleeping...
Avatar of CtrlCtrlV
CtrlCtrlV

ASKER


Im creating a new file on my system (windows xp) but it will be only valid if the page is completely loaded. Im thinking of something like:

\\when screen loaded
{
File file = new File("myfile");
}    
can you just put it at the bottom of the jsp?

Or you can add a button to the bottom of the page that the user has to click

Or you could add some javascript to the bottom of the page that submits the page back to the server, and it creates the file then?

I have it already at the bottom of the page but it seems to create the file even though the file page isnt entirely loaded,

>>Or you could add some javascript to the bottom of the page that submits the page back to the server, and it creates the file then?

This could work, could you post code plz?
You would have to put a bit of javascript at the bottom of the page that posts a form back to the same jsp (with a hidden input in it)

<form id="again"><input type="hidden" name="makeFile" value="yes"></form>

Then, at the bottom of the page...

<SCRIPT language="JavaScript">
document.getElementById( "again" ).submit() ;
</SCRIPT>

Then, in the JSP, if you get the hidden property...make the file:

<%
    if( request.getProperty( "again" ) != null )
    {
        // make the file
    }
%>

But this isn't a very neat solution, and relies on the user having javascript enabled...

Maybe if you explain the context of what you are trying to do, I'll be able to think of a better solution... :-)
Sorry about the delay, javascript will be enabled as this is sytem run over a network.  

>><form id="again"><input type="hidden" name="makeFile" value="yes"></form>

Then, at the bottom of the page...

<SCRIPT language="JavaScript">
document.getElementById( "again" ).submit() ;
</SCRIPT>

Where exactly where do I put all that?

If this works it will be fine :)
at the bottom of the jsp...inside the <BODY> tag of your html output...

Then, that javascript should be fired when the page has finished loading :-)

That didnt work, The page that i want to check that is loaded has a respone.redirect at the bottom of the page, but its still not showing the page, just redirecting right away from the current page.

Ive also tried putting the Thread.sleep just before the redirect but it just sleeps on the current page and then redirects.
> The page that i want to check that is loaded has a respone.redirect at the bottom of the page, but its still not showing the page, just redirecting right away from the current page.

!?

Response.sendRedirect will fire immediately, irrespective of whether the user has recieved the html or not

Can you post some of your JSP code?
Sure, here it is:

out.print("<td  width='10' align='left'><font face='Arial Narrow' size='3' color= '#000000'>"+names[ncnt]+" <b>:"+salarys+"</b></font>");

I just want that to be displayed for say 5 seconds and then:

response.sendRedirect("sendtoindex.jsp");
ASKER CERTIFIED SOLUTION
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

Thank you :), I couldnt see the woods from the trees....
:-) glad I could help :-)

Good luck with it :-)

Tim