我有dd.MM.yy HH:mm
格式的字符串,例如12.04.14 07:00
。
我将该String转换为Date对象,其中包含以下行:
SimpleDateFormat sdfToDate = new SimpleDateFormat("dd.MM.yy HH:mm");
Date date_new = sdfToDate.parse(date);
但是日期的格式如下:
2014年4月12日上午7:00:00
我需要24小时显示。我该怎么做?
答案 0 :(得分:2)
试试这个
String dateStr = "Apr 12, 2014 7:00:00 AM";
DateFormat readFormat = new SimpleDateFormat( "MMM dd, yyyy hh:mm:ss aa");
DateFormat writeFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
Date date = null;
try
{
date = readFormat.parse( dateStr );
}
catch ( ParseException e )
{
e.printStackTrace();
}
if( date != null )
{
String formattedDate = writeFormat.format( date );
}
答案 1 :(得分:0)
这样做:
Date date = new SimpleDateFormat("dd.MM.yy HH:mm").parse("12.04.14 07:00");
String formated = new SimpleDateFormat("dd.MM.yy HH:mm:ss").format(date);
System.out.println(formated);
输出:
12.04.14 07:00:00
答案 2 :(得分:0)
String formattedDate=null;
String dateStr = "Jul 27, 2011 8:35:29 PM";
DateFormat readFormat = new SimpleDateFormat( "MMM dd, yyyy hh:mm:ss aa");
DateFormat writeFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
Date date = null;
try
{
date = readFormat.parse( dateStr );
}
catch ( ParseException e )
{
e.printStackTrace();
}
if( date != null )
{
formattedDate = writeFormat.format( date );
}
try
{
Date format=writeFormat.parse(formattedDate);
}
catch ( ParseException e )
{
e.printStackTrace();
}
如果您希望再次使用format方法作为日期对象进行转换。最终日期对象
日期格式= writeFormat.parse(formattedDate);
答案 3 :(得分:0)
使用此代码以24小时格式输出
Date d = new Date();
String dd = new SimpleDateFormat("yyyy-MM-dd k:mm:ss").format(d);
输出
2014-04-11 18:20:55