JAVA中日期格式的问题

发布于 2024-11-19 23:22:57 字数 376 浏览 1 评论 0原文

我正在 JAVA 中使用 SimpleDateFormat 类将字符串值转换为日期格式。 下面是代码

try{
SimpleDateFormat format = new SimpleDateFormat(pattern);
Date newDate = format.parse(value);
if(newDate != null)
return newDate;
else
return null;
}

我的输入是convertToDate("12-13-2011","dd-MM-yyyy") 我的输出是 Thu Jan 12 00:00:00 IST 2012 为什么它没有抛出错误,而是将明年和月份作为 JAN。

谢谢 普拉迪普·库马尔

I am using SimpleDateFormat class in JAVA to convert string value to date format.
Below is the code

try{
SimpleDateFormat format = new SimpleDateFormat(pattern);
Date newDate = format.parse(value);
if(newDate != null)
return newDate;
else
return null;
}

My input is convertToDate("12-13-2011","dd-MM-yyyy")
my output is Thu Jan 12 00:00:00 IST 2012
Why it is not throwing an error instead it takes next year and month as JAN.

Thanks
PradeepKumar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

李不 2024-11-26 23:22:57

您指定了一种格式,其中前两位数字是日期,后两位数字是月份。

请务必致电,因为如果不设置此值,SimpleDateFormat 将尝试解释您的日期。

format.setLenient(false)

无论如何,如果您想要更严格的格式,

You specified a format in which the first two digits are the days and the second two digits are the month.

Anyway, make sure to call

format.setLenient(false)

if you want a stricter formatting, as without setting this the SimpleDateFormat will try to interpret your date.

未央 2024-11-26 23:22:57

("12-13-2011","dd-MM-yyyy") ->因为没有第13个月? ;)

("12-13-2011","dd-MM-yyyy") -> because ther is no 13th month? ;)

伴我老 2024-11-26 23:22:57

这就是 SimpleDateFormat 的工作原理。如果您想更改行为,请扩展类并覆盖方法格式以调整行为。

That's how SimpleDateFormat works. If you want to change the behavior extend the class and override the method format to tweak the behavior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文