利用机器人Robot休眠做了一个延迟方法
public static void delay(int a) { try { Robot r = new Robot(); r.delay(a); //r.delay(2000) 毫秒 } catch (AWTException e) { e.printStackTrace(); } } }