获取精确到秒的时间戳

/**
* 获取精确到秒的时间戳
*
* @return
*/
public static int getSecondTimestamp(Date date) {
if (null == date) {
return 0;
}
String timestamp = String.valueOf(date.getTime());
int length = timestamp.length();
if (length > 3) {
return Integer.valueOf(timestamp.substring(0, length - 3));
} else {
return 0;
}
}

posted @ 2023-03-27 11:36  我的心儿  阅读(48)  评论(0)    收藏  举报