Timestamp (timestamp):数据在特定时间之前存在的完整、可验证的数据,通常是唯一标识特定时间点的时间的字符序列。
指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数。Java中获取时间戳的方式有:
1、通过System
Sy()
2、通过Date来获取
public static Long dateToTimestamp(Date date) {
long time = da();
return time;
}
Java中获取的均为毫秒数,可根据需要自行进行转换为秒
时间戳转为指定格式的时间字符串
public static String timestampToDateStr(Long timestamp) {
Date date = new Date(timestamp);
DateFormat dateFormat = new SimpleDateFormat("yyyy:MM:dd hh:mm:ss");
String format = da(date);
return format;
}