* @return yyyy-MM-dd HH:mm:ss格式字符串 public static String timestampToDate(Object timestamp) { long sjc =   0 ; String dateStr =   "" ; if (timestamp   instanceof String) sjc = Long.parseLong((String) timestamp); else if (timestamp   instanceof Long) sjc = (Long) timestamp; return dateStr; Date date =   new Date(sjc); SimpleDateFormat sdf =   new SimpleDateFormat(  "yyyy-MM-dd HH:mm:ss" ); dateStr = sdf.format(date); return dateStr;

2022年8月15日09:42:53

java8生成时间戳

Instant timestamp = Instant.now();
Long millis = timestamp.toEpochMilli();

哪位大佬如若发现文章存在纰漏之处或需要补充更多内容,欢迎留言!!!

相关推荐:

  • java 获取系统当前时间并格式化
  • JAVA获取时间戳,哪个更快
  • oracle 将系统日期转时间戳(毫秒)
  •