赞
踩
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);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。