aspose file tools
The moose likes Java in General and the fly likes pause a progam Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "pause a progam " Watch "pause a progam " New topic
Author

pause a progam

omar bili
Ranch Hand

Joined: Aug 13, 2004
Posts: 177
hi all ,when i want to pause a thread i use the sleep
method , is there a way to pause the program and not the
a thread , like pausing the main method !?
thx
pascal betz
Ranch Hand

Joined: Jun 19, 2001
Posts: 547
have look at wait()/notify()/notifyAll() methods in java.lang.Object

pascal
Rachel Swailes
Ranch Hand

Joined: May 18, 2004
Posts: 434
You can use

Thread.sleep(3000);

which will pause the program.
omar bili
Ranch Hand

Joined: Aug 13, 2004
Posts: 177
Thankx for the Help .
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: pause a progam
 
Similar Threads
Need Help - Streaming/File IO
about yield
Pause in JAVA
Pause
notify() question..