Java各种⽇期时间格式字符串对象转Long型时间戳获取时间戳
public static Long getMillis1(){
return System.currentTimeMillis();
}
Date转时间戳
public static Long date2Millis(Date date){
Time();
}
时间戳转Date
public static Long millis2Date(long millis){
return new Date(millis);
}
⽇期字符串转时间戳
public static Long string2Millis(String dateStr, String formatStr){
try{
string转date的方法SimpleDateFormat simpleDateFormat =new SimpleDateFormat(formatStr);
return simpleDateFormat.parse(dateStr).getTime();
}catch(Exception e){
return0L;
}
}
Calendar转时间戳
public static Long calendar2Millis(Calendar calendar){
Time().getTime();
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论