我以这种格式03.03.03 14:29:34.000 (yy.mm.dd HH24:MI:SS)
如下所示现在我需要将其转换为此格式20130509 06:00
,请告知如何以此格式实现日期
答案 0 :(得分:2)
您可以使用java.text.SimpleDateFormat:
final String strSrcDate = "09.05.13 14:29:34.000";
final DateFormat srcFormat = new SimpleDateFormat(
"dd.MM.yy HH:mm:ss.SSS");
final Date date = srcFormat.parse(strSrcDate);
final DateFormat destFormat = new SimpleDateFormat("yyyyMMdd HH:mm");
final String strDestDate = destFormat.format(date);
System.out.println(strSrcDate);
System.out.println(strDestDate);
答案 1 :(得分:0)
您可以这样使用SampleDateFormat:
Date myDate = new Date(); // The date you post
String S = new SimpleDateFormat("yyyyMMdd HH:mm").format(myDate);
如果20130509
是月份或日期,我不会在05
中理解。我已将05
视为月份,09
视为当天