12 時間の日時形式を 24 時間の日時形式に変換しているときに日付を解析できません。コードは次のとおりです。
List_CallDateTime=rs.getString(5);
System.out.print(List_CallDateTime);
String str=List_CallDateTime;
SimpleDateFormat callreadFormat=new SimpleDateFormat("MM/dd/yyyy hh:mm aa",Locale.US);
SimpleDateFormat callwirteformat=new SimpleDateFormat("MMM dd yyyy HH:mm",Locale.US);
Date calldate=null;
calldate=callreadFormat.parse(str);
String callcreatedate=callwirteformat.format(calldate);
System.out.println("asdsad"+callcreatedate);
そして私が得る例外は
StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception
java.text.ParseException: Unparseable date: "04/25/2012 9:00AM"