gpt4 book ai didi

java - 获取自某个日期以来的毫秒数

转载 作者:行者123 更新时间:2023-12-02 04:37:50 25 4
gpt4 key购买 nike

如何获取从 2011 年 10 月 15 日下午 1:52:34 开始的毫秒数

我可以获取距离当前时间的毫秒数。

Date date = new Date();
long currentTime = date.getTime();
System.out.println("Current time in long: " + currentTime);

最佳答案

long now = System.currentTimeMillis(); // Simpler way to get current time
Date date = new SimpleDateFormat("dd yyyy h:mm:ss a").parse("15 2011 1:52:34 PM");
long timeElapsed = now - date.getTime(); // Here's your number of ms

关于java - 获取自某个日期以来的毫秒数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7960555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com