Question

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 ?

Was it helpful?

Solution

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);

OTHER TIPS

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));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top