gpt4 book ai didi

java - 不可解析的日期异常 - 月日期格式

转载 作者:行者123 更新时间:2023-12-01 09:08:38 25 4
gpt4 key购买 nike

我的日期格式(字符串):4 AM CST 9 DEC 16

我想使用以下代码解析它:

String sDate = "4 AM CST  9 DEC 16";
Date st = new SimpleDateFormat("h aaa z d MMM yy",Locale.ENGLISH).parse(sDate);
DateFormat formatter = DateFormat.getDateTimeInstance(
DateFormat.LONG,
DateFormat.FULL,
new Locale("no"));
sDate = formatter.format(st);

但我遇到了这个异常:

java.text.ParseException:无法解析的日期:“4 AM CST 9 DEC 16”

我真的不确定,但这是否是因为我的 sDate 中的月份,字符都是大写值,并且日期格式“MMM”唯一的大写字母是每个月的第一个字母?

最佳答案

这段代码:

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class Main {
public static void main(String[] args) throws ParseException {
String sDate = "4 AM CST 9 DEC 16";
Date st = new SimpleDateFormat("h aaa z d MMM yy", Locale.ENGLISH).parse(sDate);
DateFormat formatter = DateFormat.getDateTimeInstance(
DateFormat.LONG,
DateFormat.FULL,
new Locale("no"));
sDate = formatter.format(st);
System.out.print(sDate);
}
}

工作正常。我有java版本“1.8.0_77”

关于java - 不可解析的日期异常 - 月日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41060629/

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