我需要将 jul 05 10:30:00 ist 2012 格式转换为 2012-07-11 10:30:00.0 格式。我试过以下
String str_date = "Fri Jul 06 10:30:00 IST 2012";
SimpleDateFormat fmt = new SimpleDateFormat("dd MMM hh:mm:ss Z yyyy");
Date today = null;
try {
today = (Date) fmt.parse(str_date);
System.out.println("Todays date:" + today);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
java.sql.Date dt = new java.sql.Date(today.getTime());
我正进入(状态
java.text.ParseException:无法解析的日期:“Fri Jul 06 10:30:00 IST 2012”在 java.text.DateFormat.parse(DateFormat.java:337) 错误
谁能帮我解决这个问题?