gpt4 book ai didi

java - 将生日转换为毫秒

转载 作者:行者123 更新时间:2023-12-02 08:40:52 26 4
gpt4 key购买 nike

如何将用户输入的生日转换为毫秒,以便我可以计算出他们在不同星球上的年龄

这是我到目前为止的代码:

DateFormat df = new SimpleDateFormat("MM dd yyyy");
Date dateBirth = df.parse(birthdate);
Calendar calBirth = new GregorianCalendar();
calBirth.setTime(dateBirth);


编辑1:是的,我希望获取用户的出生日期和当前时间之间的毫秒数,以便将其除以一年中行星的天数

最佳答案

dateBirth.getTime()如果您正在寻找的话,将为您提供自纪元以来的毫秒数?

编辑-

为了获得现在和生日之间的差异,您显然可以将 now 作为 Date 对象获取,将其转换为毫秒,然后减去 - 例如 now.GetTime() - dateBirth.GetTime().

关于java - 将生日转换为毫秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2338067/

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