gpt4 book ai didi

android - 以特定格式转换 DateString

转载 作者:行者123 更新时间:2023-11-30 04:31:48 24 4
gpt4 key购买 nike

我有一个问题,我的日期字符串格式为“2011-09-28T10:33:53.694+0000”。我想在 MM/DD/YYYY 中更改此日期格式,不知道如何?请建议我获得正确的结果。

最佳答案

是这样的。检查“发件人”格式的详细信息。

DateFormat from = new SimpleDateFormat("yyyy-MM-ddThh:mm:ss");  // not sure about the details
from.setLenient(false);
DateFormat to = new SimpleDateFormat("MM/dd/yyyy");
to.setLenient(false);
Date d = from.parse(dateStr);
System.out.println(to.format(d));

关于android - 以特定格式转换 DateString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7583588/

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