gpt4 book ai didi

java - 解析时间字符串时出错

转载 作者:行者123 更新时间:2023-12-02 06:01:43 24 4
gpt4 key购买 nike

我正在尝试解析一些时间字符串,如下所示:

String time_string = "10:00 AM";
SimpleDateFormat format = new SimpleDateFormat("hh:mm a");
Date date = null;
try {
date = format.parse(time_string);
// Do something with 'date'
} catch (ParseException e) {
Log.w("Time", e.toString());
}

但是解析器失败,但出现以下异常:

java.text.ParseException: Unparseable date: "10:00 AM"

我做错了什么?

最佳答案

AM/PM 标记可能与您的默认区域设置尝试不匹配

SimpleDateFormat format = new SimpleDateFormat("hh:mm a", Locale.ENGLISH);

关于java - 解析时间字符串时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22611541/

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