gpt4 book ai didi

android - java.text.parseException : Unparseable date : 2020-02-06T08:00:00

转载 作者:行者123 更新时间:2023-12-02 18:39:19 25 4
gpt4 key购买 nike

当我对日期应用特定格式时出现解析异常。

SimpleDateFormat df = new SimpleDateFormat("hh:mm a");
try {
String s=timeSlotsArrayList.get(position).getScheduledStartTime();
Date d = df.parse(s);
times.setText(df.format(d));
}
catch (ParseException e) {
e.printStackTrace();
}

AM 正在获取而不是 PM 问题图像

AM is getting instead of PM issue image

最佳答案

您没有对 SimpleDateFormat 应用正确的格式。使用

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");

然后解析时间如下:

Date d = df.parse(s);

String time = new SimpleDateFormat("hh:mm a").format(d);
times.setText(time);

关于android - java.text.parseException : Unparseable date : 2020-02-06T08:00:00,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60092572/

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