jsp String to Date--In , value attribute can not be parsed

使用json时,在jsp中将String类型转换为Date类型,不想在java代码中更改,也不想动数据库

在网上找的资料中会有这种解决方案



然而我在格式转换过程中,会报这种错误

In , value attribute can not be parsed: “20171010”

解决方案:

原始代码


"transDate":"",

更改后代码


"transDate":"",

结果:”transDate”:”2017-10-10”

类似的,显示时分秒如下


"drawDate":"",

结果:”drawDate”:”2017-10-10 10:10:10”

你可能感兴趣的:(JSP)