gpt4 book ai didi

java - 如何获取特定区域的特定格式的当前时间?

转载 作者:行者123 更新时间:2023-12-01 17:29:17 25 4
gpt4 key购买 nike

我想以特定的格式(例如HH-MM-SS、MM-DD-YY、MoMo-DD-YY-HH-MM-SS 等)获取我选择的区域中的当前日期时间。我该如何使用 JodaTime 来做到这一点?

最佳答案

鉴于您已经看过用户指南(其中包括 time zonesformatting 的部分),目前还不清楚您的困惑在哪里。一些帮助您入门的示例代码:

DateTimeZone zone = DateTimeZone.forID("Europe/London");
DateTime currentTimeInLondon = new DateTime(zone);
DateTimeFormatter formatter = DateTimeFormat.forPattern("HH:mm:ss, MM-dd-yyyy");
String text = formatter.print(currentTimeInLondon); // e.g. 08:24:54, 09-26-2012

鉴于用户指南中的信息,您值得花一些时间来分析为什么您自己无法获取此代码。作为一名软件工程师,能够弄清楚如何使用 API 是一项非常重要的技能 - 您不能指望一直被灌输代码。

关于java - 如何获取特定区域的特定格式的当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12595813/

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