我正在尝试将“12-Jun-2013”日期转换为“12-06-2013”,但它给了我例外。
String req="12-Jun-2013"
SimpleDateFormat sdfSource = new SimpleDateFormat("dd/MMM/yyyy",Locale.UK);
try {
Date date = (Date) sdfSource.parse(req);
SimpleDateFormat sdfDestination = new SimpleDateFormat("dd-MM-yyyy",Locale.UK);
req = sdfDestination.format(date);
System.out.println("final object"+req);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我得到了例外
java.text.ParseException: Unparseable date: "12-Jun-2013"