我在日期/时间表示方面遇到了一些问题。数据收集创建了一个 包含以下格式的日期/时间的XML文件:yyyy-mm-dd hh:mm:ss
例如:
<from>2012-01-10 12:59:00</from>
<till>2012-01-10 17:00:00</till>
我见过一个德语区域转换不正确的情况:
2008-10-15 12:59:24 converted to 15.10.08 00:59:24
有人建议输入日期格式不正确,所以我尝试了最接近的 我可以找到标准(ISO-8601)并输入yyyy-mm-ddThh:mm:ss。这导致了一个例外:
java.text.ParseException: Unparseable date: "2008-09-30T23:22:27"
所以我觉得不是吗!
我有两个问题:
1 - Is the date format the problem???
2 - If it is, what is the default date format (I have read the documentation but
didn't find it)