返回指定时间的年月日小时 分钟 秒 毫秒

Posted cq-yangzhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了返回指定时间的年月日小时 分钟 秒 毫秒相关的知识,希望对你有一定的参考价值。

1、获取年

public static int getYear(Date date)
        Calendar c = Calendar.getInstance();
        c.setTime(date);
        return c.get(Calendar.YEAR);
    

2、获取月

public static int getMonth(Date date)
        Calendar c = Calendar.getInstance();
        c.setTime(date);
        return c.get(Calendar.MONTH)+1;
    

3、获取日

public static int getMonth(Date date)
        Calendar c = Calendar.getInstance();
        c.setTime(date);
        return c.get(Calendar.DAY_OF_MONTH);
    

4、获取小时

public static int getHour(Date date) 
    calendar = Calendar.getInstance();
    calendar.setTime(date);
    return calendar.get(Calendar.HOUR_OF_DAY);

5、获取分钟

public static int getMinute(Date date) 
    calendar = Calendar.getInstance();
    calendar.setTime(date);
    return calendar.get(Calendar.MINUTE);

6、获取秒

public static int getSecond(Date date) 
    calendar = Calendar.getInstance();
    calendar.setTime(date);
    return calendar.get(Calendar.SECOND);

7、获取毫秒

public static long getMillis(Date date) 
    calendar = Calendar.getInstance();
    calendar.setTime(date);
    return calendar.getTimeInMillis();

 

以上是关于返回指定时间的年月日小时 分钟 秒 毫秒的主要内容,如果未能解决你的问题,请参考以下文章

java 日期比较(compareTo)

有啥好方法把秒数转换成时分秒的格式

将秒转换为(小时:分钟:秒:毫秒)时间的最佳方法是啥?

年月日时分秒的英文字母表示格式

在php中显示小时:分钟:秒:毫秒

js(javascript)取得当前时间小时,分钟,秒 以及毫秒