Java tutorial
//package com.java2s; public class Main { public static void sleep(long mil) { /* double cur = System.currentTimeMillis(); while (System.currentTimeMillis() - cur < mil) { } */ try { Thread.sleep(mil); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }