Convert Date to String using simpledateformat

前端 未结 5 691
一生所求
一生所求 2021-01-16 11:29

I\'m having issues when converting a date to string in a different format. The date:

lastDownloadDate>>Wed Feb 27 16:20:23 IST 2013
lastChangeDate>&         


        
5条回答
  •  不知归路
    2021-01-16 12:04

    yyyy-mm-dd HH:mm:ss this is wrong. This should be yyyy-MM-dd HH:mm:ss. Refer this http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html for more details regarding converting date from one format to another.

提交回复
热议问题