在Java中格式化日期所需的帮助

时间:2010-04-20 13:59:01

标签: java date date-format

您好我有以下日期作为字符串格式。

输入

2010-04-20 05:34:58.0

输出我想要像

这样的字符串
20, Apr 2010

有人可以告诉我该怎么做吗?

2 个答案:

答案 0 :(得分:5)

试试这个:

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

答案 1 :(得分:5)

您可能想尝试一下:

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