I was wondering if it is possiable to make a time delay in java or if their is a command for it?
thanx,
Jeremy
If its as simple as it sounds I guess I am not basic enough
Printable View
I was wondering if it is possiable to make a time delay in java or if their is a command for it?
thanx,
Jeremy
If its as simple as it sounds I guess I am not basic enough
Thread.sleep(long delay);
You can find more information here:
http://java.sun.com/products/jdk/1.2...ml#sleep(long)