Selenium-java-获取当前时间

1 获取当前时间 时分秒

        // 获取当前时分秒
        Calendar now = Calendar.getInstance();
        int is = now.get(Calendar.HOUR_OF_DAY);
        int isf = now.get(Calendar.MINUTE);
        int iss = now.get(Calendar.SECOND);

 2 获取当前年月日

        // 获取当前年份、月份、日期  
        Calendar cale = null;  
        cale = Calendar.getInstance();  
        int year = cale.get(Calendar.YEAR);  
        int month = cale.get(Calendar.MONTH) + 1;  
        int day = cale.get(Calendar.DATE);  
        System.out.println("Year年: " + year);  
        System.out.println("Month月: " + month);  
        System.out.println("Day日: " + day);

 

posted @ 2017-01-07 18:45  Black-Hs  阅读(1053)  评论(0编辑  收藏  举报