gpt4 book ai didi

java - 如何解决scala中的无效日期格式错误?

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

我收到以下错误:

val formatter = ISODateTimeFormat.dateTimeParser()
scala> val date2 = "Tue Dec 29 11:11:30 IST 2015"
date2: String = Tue Dec 29 11:11:30 IST 2015

scala> formatter.parseDateTime(date2)
java.lang.IllegalArgumentException: Invalid format: "Tue Dec 29 11:11:30 IST 2015" is malformed at "ue Dec 29 11:11:30 IST 2015"

如何解决以下错误?

最佳答案

我认为您这里的格式错误 - 使用 SimpleDateFormat 和 a bit of googling这有效:

scala> val formatter = new java.text.SimpleDateFormat("EEE MMM d HH:mm:ss Z yyyy")
formatter: java.text.SimpleDateFormat = java.text.SimpleDateFormat@73342172

scala> formatter.parse("Tue Dec 29 11:11:30 IST 2015")
res1: java.util.Date = Tue Dec 29 09:11:30 GMT 2015

编辑:呃,不要像我最初那样忘记时区和年份;-)

关于java - 如何解决scala中的无效日期格式错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34768351/

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