java时间戳与Date对象的转换方法是什么

avatar
作者
猴君
阅读量:0

在Java中,可以使用System.currentTimeMillis()方法来获取当前时间的时间戳(即从1970年1月1日00:00:00 UTC到现在的毫秒数)。要将时间戳转换为Date对象,可以使用new Date(timestamp)构造方法,其中timestamp是时间戳的值。

另外,要将Date对象转换为时间戳,可以使用getTime()方法,该方法返回自1970年1月1日00:00:00 UTC以来的毫秒数。例如:

long timestamp = System.currentTimeMillis();  Date date = new Date(timestamp);  long newTimestamp = date.getTime(); 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!