JAVA延迟方法

利用机器人Robot休眠做了一个延迟方法

    public static void delay(int a) {
        try {
            Robot r = new Robot();
            r.delay(a);
            //r.delay(2000)  毫秒
        } catch (AWTException e) {
            e.printStackTrace();
        }
    }
}

 

posted @ 2020-03-11 21:17  守护时光  阅读(261)  评论(0编辑  收藏  举报