The Artima Developer Community
Sponsored Link

Java Answers Forum
Pause in JAVA

3 replies on 1 page. Most recent reply: May 3, 2003 12:45 PM by Charles Bell

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 3 replies on 1 page
Kevin

Posts: 27
Nickname: quasi
Registered: Apr, 2003

Pause in JAVA Posted: May 3, 2003 4:47 AM
Reply to this message Reply
Advertisement
How do I pause in JAVA. I am writing a program to display information of various employees and I need to pause after every 3 records. How do I do it.? Can you pause using for loops?


kuht7hgf

Posts: 1
Nickname: nona
Registered: May, 2003

Re: Pause in JAVA Posted: May 3, 2003 7:08 AM
Reply to this message Reply
Hello Kevin

Are you already interested in this matter ?
You can contact me at ignasicemeli@yahoo.es

Regards

Thang Nguyen

Posts: 18
Nickname: thang
Registered: Apr, 2002

Re: Pause in JAVA Posted: May 3, 2003 10:18 AM
Reply to this message Reply
Is this the one?

obj.sleep(int miliseconds);

Charles Bell

Posts: 519
Nickname: charles
Registered: Feb, 2002

Re: Pause in JAVA Posted: May 3, 2003 12:45 PM
Reply to this message Reply
Insert the follwing snippet in your code where ever you want to pause for three seconds:

            try{
                Thread.sleep(3000); 
            }catch(InterruptedException ie){
                System.err.println("InterruptedException: " + ie.getMessage());
            }
 


If you want to change the pause time, change the number 3000 to the number of millseconds you want to pause. 5 seconds = 5000 millseconds.

Flat View: This topic has 3 replies on 1 page
Topic: help with an error Previous Topic   Next Topic Topic: Create an array of objects

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use