Cannot format given Object as a Date

Posted 长风傲天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cannot format given Object as a Date相关的知识,希望对你有一定的参考价值。

这个小错挺有意思的,记录一下

导出Excel的时候,同事直接用 format ……

写个测试说明一下:

        String temp = "2017-03-07 00:00:00.54";
	//temp = temp.substring(0,aaa.lastIndexOf("."));
	Date date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(temp);
	String str = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);
	System.out.println("==== this time ==="+str);        

  这个 format 和 parse 需要传入的参数类型是有要求的,不能乱传

乱传……

那就报错呗……

 java.lang.IllegalArgumentException: Cannot format given Object as a Date
	at java.text.DateFormat.format(DateFormat.java:301)
	at java.text.Format.format(Format.java:157)
	at com.zhaopin.QueryTest.main(QueryTest.java:32)

  

以上是关于Cannot format given Object as a Date的主要内容,如果未能解决你的问题,请参考以下文章

Vue2+ThreeJS踩坑记录THREE.FBXLoader: Cannot find the version number for the file given.错误解决办法

Vue2+ThreeJS踩坑记录THREE.FBXLoader: Cannot find the version number for the file given.错误解决办法

FFmpeg 'scale' filter not present, cannot convert pixel formats.

pandas提示"Cannot convert {0!r} to Excel".format(value)

Kendo UI 网格 - throw Error(kendo.format("Cannot call method '0' of 1 before it is initialized&qu

学习字符串format()函数时,报错:ValueError: cannot switch from manual field specification to automatic field num