gpt4 book ai didi

java - 将 Joda LocalDateTime 转换为 Unix 时间戳

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:30:19 26 4
gpt4 key购买 nike

如果本地时间在 UTC 时区,我如何将 org.joda.time.LocalDateTime 转换为 Unix 时间戳?

例子:

new LocalDateTime(2015, 10, 02, 11, 31, 40) > 1443785500.

最佳答案

鉴于您想要 Unix 时间戳“给定的 LocalDateTime,以 UTC 表示”,最简单的方法就是通过指定 DateTimeZone 将其转换为 DateTime 为 UTC,并将其转换:

LocalDateTime local = new LocalDateTime(2015, 10, 02, 11, 31, 40);
DateTime utc = local.toDateTime(DateTimeZone.UTC);
long secondsSinceEpoch = utc.getMillis() / 1000;

注意这里使用秒作为 Unix 时间戳 - 其他 API(例如 java.util.Date)可能期望自 Unix 纪元以来的毫秒数。

关于java - 将 Joda LocalDateTime 转换为 Unix 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32906265/

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