写成工具类TimeUtils:👇👇👇
public class TimeUtils{
/**
* 获取当前时间
* @return
*/
public static String getCurrentTime(){
return System.currentTimeMillis()+"";
}
/**
* 格式化当前时间
* @return
*/
public static SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public static String getTime()
{
return sf.format(new Date());
}
/**
* 获取当前时间的时间戳
* @return
*/
public static long getCurrentTimeMillis(){
return System.currentTimeMillis();
}
private static Calendar cd = Calendar.getInstance();
/**
* 获取年
* @return
*/
public static int getYear(){
return cd.get(Calendar.YEAR);
}
/**
* 获取月
* @return
*/
public static int getMonth(){
return cd.get(Calendar.MONTH)+1;
}
/**
* 获取日
* @return
*/
public static int getDay(){
return cd.get(Calendar.DATE);
}
/**
* 获取时
* @return
*/
public static int getHour(){
return cd.get(Calendar.HOUR);
}
/**
* 获取分
* @return
*/
public static int getMinute(){
return cd.get(Calendar.MINUTE);
}
/**
* 获取秒
* @return
*/
public static int getSecond(){
return cd.get(Calendar.SECOND);
}
/**
* 时间戳转时间
* @param milSecond
* @return
*/
public static String getDateToString(long milSecond) {
Date date = new Date(milSecond* 1000);
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
return format.format(date);
}
}
网友评论