Help needed in formatting date in Java

2019-08-07 08:49发布

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 ?

2条回答
爷、活的狠高调
2楼-- · 2019-08-07 09:29

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));
查看更多
闹够了就滚
3楼-- · 2019-08-07 09:51

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);
查看更多
登录 后发表回答