Failed to convert value of type 'java.lang.String' to required type 'java.util.Date';

后台接收Date数据,用String 类型接收,写入时转换格式

String-》Date,先进行格式修改,再利用parse转换为Date

      java.text.SimpleDateFormat ft = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
        Date date=ft.parse(businessDate);

传输数据格式与前台数据相同

Date->String

Date date=ft.format(businessDate);

 

Failed to convert value of type 'java.lang.String' to required type 'java.util.Date';

上一篇:[Java] 多线程


下一篇:javaSE高级篇6——java8新特性详解