获取时间戳:

long s=System.currentTimeMillis();

long s1=new Date().getTime();

long s2=Calendar.getInstance().getTimeInMillis();

long s3=Instant.now().toEpochMilli();

long s4=Clock.systemUTC().millis();

将时间戳转化为指定格式的日期:

String s ="1662460000000";

//设置时间的格式

SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

//将时间转换指定格式的日期

String date=f.format(Long.valueOf(s));

System.out.println(date);



将指定格式的时间转化为时间戳

String s ="2020-09-09 12:12:00";

SimpleDateFormat f=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

//getTime()获取格式日期的时间戳

long shootTime = f.parse(s).getTime();

System.out.println(shootTime);

image.png

————————————————

版权声明:本文为CSDN博主「妮听得到」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/m0_58121644/article/details/126734012