How to change Date format type between dates?
问题 how to change this date type "Thu Feb 02 12:00:00 GMT-12:00 2012" to another date type "yyyy-mm-dd HH:mm:ss"? If "Thu Feb 02 12:00:00 GMT-12:00 2012" is the String type, how to convert Date type of "yyyy-MM-dd HH:mm:ss"? java code: DateFormat inputDF = new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy"); DateFormat outputDF = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date dd = inputDF.parse("Thu Feb 02 12:00:00 GMT-12:00 2012"); String strDate = outputDF.format(dd); The output is String