How to convert a string in the form of 03/24/2013 21:54
into a Date object in java?
问问题
107157 次
2 回答
33
使用这个,
String s = "03/24/2013 21:54";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm");
try
{
Date date = simpleDateFormat.parse(s);
System.out.println("date : "+simpleDateFormat.format(date));
}
catch (ParseException ex)
{
System.out.println("Exception "+ex);
}
于 2013-06-04T05:28:45.020 回答
13
与SimpleDateFormat
. 步骤是 -
- 创建您的日期模式字符串
- 创建
SimpleDateFormat
对象 - 并用它解析。
- 它将返回
Date
对象。
于 2013-06-04T05:25:15.057 回答