gpt4 book ai didi

android - java.text.ParseException : Unparseable date for String 异常

转载 作者:行者123 更新时间:2023-11-29 00:55:41 34 4
gpt4 key购买 nike

我有一个字符串格式的日期,我使用 SimpleDateFormat 解析它,但令我惊讶的是我不断收到 java.text.ParseException: Unparseable date: Error。

我以为我弄错了模式,但我仔细看了看,我不这么认为,我想知道我的问题可能是什么:

我不断得到

E/FormatFormDate: java.text.ParseException: Unparseable date: "2019-02-25T22:43:23.213Z"

下面是我的代码:

var clean = "2019-02-25T22:43:23.213Z"

val inputFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
val outputFormatTime = "HH:mm"
val DATE_TIME_ONLY = SimpleDateFormat(outputFormatTime, Locale.getDefault())
if (clean != "") {
try {
val parseDate = SimpleDateFormat(inputFormat, Locale.getDefault()).parse(clean)
clean = DATE_TIME_ONLY.format(parseDate)
Log.d("TAG", clean)

} catch (e: ParseException) {
Log.e("FormatFormDate", Log.getStackTraceString(e))
}
}

最佳答案

我找到了我的问题:

我的模式错了,我本来是要这样做的:

val inputFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"

但是我却这样做了:

val inputFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"

注意带“Z”的单引号

关于android - java.text.ParseException : Unparseable date for String 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54928221/

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