JAVA中日期格式的问题
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您指定了一种格式,其中前两位数字是日期,后两位数字是月份。
请务必致电,因为如果不设置此值,SimpleDateFormat 将尝试解释您的日期。
无论如何,如果您想要更严格的格式,
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
if you want a stricter formatting, as without setting this the SimpleDateFormat will try to interpret your date.
("12-13-2011","dd-MM-yyyy") ->因为没有第13个月? ;)
("12-13-2011","dd-MM-yyyy") -> because ther is no 13th month? ;)
这就是
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.