How do I pause a Java application?
I am programming in java with a simple text output, however I would like it to pause and maybe even ask the user to press a key, what is the code to do so?
I am using simple System.out.println() methods.
How do I pause a Java application?
use the sleep() method is the system class. If your using it in main, it should work fine, since main is the only thread in the program. Otherwise learn about creating threads, and the runnable interface.
How do I pause a Java application?
You can also wait for the user to hit the Enter key, using something like this:
BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
/* 鈥ther code鈥?*/
stdin.readLine();
Reply:You need threads in the program and to pause the thread use
thread.sleep() method.
Reply:I was basically searching for the same answer as you, and I came across a simple little Thread.sleep code that does the trick.
try {
Thread.sleep(2000);
} catch(InterruptedException e) {
}
Just putting that in between the JAVA code will pause 2000 milliseconds. Of course, you can change that to suit your needs.
- C++......................?
- is there a less complicated c++ compiler than microsoft express 2008? i found it to complicated and hav found no other free program to make a fps. a t..
- C++???????
- I am trying to make a tic tac toe game for c++ but i dont know how to use an array to make the board. also after i make the board hiw do i code it so ..
- C++???????????????
- I HAVE NO IDEA WHAT C++ IS? and i have an exam tomorrow. I dont understand 1. character set 2.tokens. i also have the for statement program, if stat..
- C++..........................?
- where i find the best c++ programing books.C++..........................?AT www.esnips.com/C++..........................?Try doing a search. OReilly t..
- C++????????
- i need to know a simple program to concat two strings without using strcat inside operator overloading.plz help me with a program..............C++????..
- ...................c++?
- How would I create a program that that displays the sum of a sales amount in each of 4 regions, during a 3 month period, which would also display the ..
- "Smitfraud-C. Toolbar888&..
- I am a webmaster, and I am trying to build my website, but my computer keeps acting weird and seems to be going into random hybernation for no reason ..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
- C programme...?
- I wrote a programme of calculator in C language. And it has two or three error so pl do correct them. And send me correct answer. Prog. is: #includest..
