日期解析错误“2016-06-17 15:42:20”

时间:2016-08-19 16:24:50

标签: java

我正在尝试使用handleError(error: any): Observable<T[]> { return Observable.throw(error) } 解析日期字符串“2016-06-17 15:42:20”,我收到并报告了异常:

DateFormat.parse()

此日期字符串有什么问题?我在通话中使用格式java.text.ParseException: Unparseable date: ""2016-06-17 15:42:20"" at java.text.DateFormat.parse(DateFormat.java:357)

感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

请注意:

java.text.ParseException: Unparseable date: ""2016-06-17 15:42:20""
                                             ^-------------------^

您的日期周围已有引号,您的格式字符串中不存在这些引号。可能你想要parse(date, "\"yyyy-mm-dd hh:mm:ss\""或类似的。

答案 1 :(得分:0)

If input date String and from user format is different then java throws this error

enter image description here

确保输入日期字符串格式与表单用户简单日期格式相同。

enter image description here