K
K
Does anyone know how to make certain text in a java application delay and display after the previous text
Does anyone know how to make certain text in a java application delay and display after the previous text
Does anyone know how to make certain text in a java application delay
and display after the previous text
System.out.println("the previous text");
try {
Thread.sleep(desired_delay_in_milliseconds);
} catch (InterruptedException ex) {
System.out.println("This may be premature, but:");
}
System.out.println("certain text");
In other words, you'll get no better answer today than you did
three days ago unless you explain your situation more clearly.
--
Eric Sosman
(e-mail address removed)
bob said:
Does anyone know how to make certain text in a java application delay
and display after the previous text
Does anyone know how to make certain text in a java application delay and display after the previous text
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.