Help needed in formatting date in Java

2019-08-07 09:04发布

问题:

Hi I have the following date as String format.

Input

2010-04-20 05:34:58.0

Output I want the string like

20, Apr 2010

Can someone tell me how to do it ?

回答1:

Try this:

DateFormat inputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S");  
DateFormat outputFormat = new SimpleDateFormat("dd, MMM yyyy");

Date yourDate = inputFormat.parse("2010-04-20 05:34:58.0");
String formattedDate = outputFormat.format(yourDate);


回答2:

You might want to try this:

SimpleDateFormat inFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S");
Date date = inFormat.parse( "2010-04-20 05:34:58.0");

SimpleDateFormat outFormat = new SimpleDateFormat("dd, MMM yyyy");
System.out.println(outFormat.format( date));