获取时间

  1. public class Test(){  
  2.   
  3.     public static String FORMAT_SHORT = "yyyy-MM-dd";    
  4.     public static String FORMAT_LONG = "yyyy-MM-dd HH:mm:ss";    
  5.     public static String FORMAT_FULL = "yyyy-MM-dd HH:mm:ss.S";    
  6.     public static String FORMAT_SHORT_CN = "yyyy年MM月dd";    
  7.     public static String FORMAT_LONG_CN = "yyyy年MM月dd日  HH时mm分ss秒";    
  8.     public static String FORMAT_FULL_CN = "yyyy年MM月dd日  HH时mm分ss秒SSS毫秒";    
  9.     
  10.     /** 获取时间戳 **/    
  11.     public static String getTimeString() {    
  12.         SimpleDateFormat df = new SimpleDateFormat(FORMAT_FULL);    
  13.         Calendar calendar = Calendar.getInstance();    
  14.         return df.format(calendar.getTime());    
  15.     }    
  16.     
  17.     /** 获取年份 **/    
  18.     public static String getYear(Date date) {    
  19.         return format(date).substring(04);    
  20.     }    
  21.     
  22.     /** 获取月份 **/    
  23.     public static int getMonth(Date date) {    
  24.         calendar = Calendar.getInstance();    
  25.         calendar.setTime(date);    
  26.         return calendar.get(Calendar.MONTH) + 1;    
  27.     }    
  28.     
  29.     /** 获取日份 **/    
  30.     public static int getDay(Date date) {    
  31.         calendar = Calendar.getInstance();    
  32.         calendar.setTime(date);    
  33.         return calendar.get(Calendar.DAY_OF_MONTH);    
  34.     }    
  35.     
  36.     /** 获取小时 **/    
  37.     public static int getHour(Date date) {    
  38.         calendar = Calendar.getInstance();    
  39.         calendar.setTime(date);    
  40.         return calendar.get(Calendar.HOUR_OF_DAY);    
  41.     }    
  42.     
  43.     /** 获取分钟 **/    
  44.     public static int getMinute(Date date) {    
  45.         calendar = Calendar.getInstance();    
  46.         calendar.setTime(date);    
  47.         return calendar.get(Calendar.MINUTE);    
  48.     }    
  49.     
  50.     /** 获取秒钟 **/    
  51.     public static int getSecond(Date date) {    
  52.         calendar = Calendar.getInstance();    
  53.         calendar.setTime(date);    
  54.         return calendar.get(Calendar.SECOND);    
  55.     }    
  56.     
  57.     /** 获取毫秒 **/    
  58.     public static long getMillis(Date date) {    
  59.         calendar = Calendar.getInstance();    
  60.         calendar.setTime(date);    
  61.         return calendar.getTimeInMillis();    
  62.     }   
  63.   
  64. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值