我正在尝试解析迄今为止的字符串,但输出看起来不正确:以下是我的代码。
public static void main(String[] args){
Date startDate = new Date();
DateFormat formatter = new SimpleDateFormat("dd.MM.yyyy hh:mm:ss");
try {
startDate = (Date) formatter.parse("07.10.2012 12:19:24");
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Formatted Date " + startDate.toString());
}
程序输出:
格式化日期 Sun Oct 07 00 :19:24 IST 2012
预期输出:
格式化日期 Sun Oct 07 12 :19:24 IST 2012