J2EE社区

苟有恒,何必三更起五更眠;
最无益,只怕一日曝十日寒.
posts - 241, comments - 318, trackbacks - 0, articles - 16

Calendar使用

Posted on 2010-06-21 00:31 xcp 阅读(860) 评论(0)  编辑  收藏

        Calendar cal = Calendar.getInstance();

        //当前年
        int year = cal.get(Calendar.YEAR);


        //当前月
        int month = (cal.get(Calendar.MONTH))+1;


        //当前月的第几天:即当前日
        int day_of_month = cal.get(Calendar.DAY_OF_MONTH);


        //当前时:HOUR_OF_DAY-24小时制;HOUR-12小时制
        int hour = cal.get(Calendar.HOUR_OF_DAY);


        //当前分
        int minute = cal.get(Calendar.MINUTE);


        //当前秒
        int second = cal.get(Calendar.SECOND);


        //0-上午;1-下午
        int ampm = cal.get(Calendar.AM_PM);


        //当前年的第几周
        int week_of_year = cal.get(Calendar.WEEK_OF_YEAR);


        //当前月的第几周
        int week_of_month = cal.get(Calendar.WEEK_OF_MONTH);


        //当前年的第几天
        int day_of_year = cal.get(Calendar.DAY_OF_YEAR);

    


名称: ♪4C.ESL | .↗Evon
口号: 遇到新问题♪先要寻找一个方案乄而不是创造一个方案こ
mail: 联系我



只有注册用户登录后才能发表评论。


网站导航: