gpt4 book ai didi

java - 为什么 SimpleDateFormat 不应用指定的日期模式?

转载 作者:行者123 更新时间:2023-11-30 03:43:19 24 4
gpt4 key购买 nike

我有以下代码来格式化日期,但输出与模式不匹配。

try{
String date = "2014-11-1T12:14:00";
Date convertedDate = new SimpleDateFormat("yyyy-MM-dd").parse(date);
System.err.println(convertedDate.toString());
}catch(ParseException p){
System.err.println(p.getMessage());
}

输出

Sat Nov 01 00:00:00 EST 2014

最佳答案

我认为您在质疑为什么您没有时间,那是因为您的格式不包含它。我建议您在调用 DateFormat#format(Date) 时使用 "yyyy-MM-dd'T'HH:mm:ss" 来匹配您的输入和 "yyyy-MM-dd"

try {
String date = "2014-11-1T12:14:00";
Date convertedDate = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss").parse(date);
System.out.println(convertedDate.toString());
// Per your comment you wanted to `format()` it like -
System.out.println(new SimpleDateFormat("yyyy-MM-dd").format(convertedDate));
} catch (ParseException p) {
System.err.println(p.getMessage());
}

关于java - 为什么 SimpleDateFormat 不应用指定的日期模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26331852/

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