次のコードを使用して、値が09:10:06の文字列から変換します が、cal set time で例外が発生しました: Unparseable date: "09:19:06" どうすればこの問題を克服できますか。
DateFormat df = new SimpleDateFormat("dd.MM.yyyy");
Calendar cal = Calendar.getInstance();
try {
cal.setTime(df.parse(memberValue));
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}