我試圖解析以下日期:使用下面的代碼 28/02/2016 :java.text.ParseException:無法解析的日期: 「28/02/2016」
String cDate = stringTokenizer.nextElement().toString();
Date dates;
dates = null;
SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");
try {
dates = dateFormat.parse(cDate);
}
catch (ParseException ex) {
Logger.getLogger(Edit_Match_Final.class.getName()).log(Level.SEVERE, null, ex);
}
然而,我得到錯誤: java.text.ParseException:無法解析的日期: 「28/02/2016」
看看你傳遞到'SimpleDateFormat'構造函數的格式。現在看看你傳遞給'parse'的文本格式... –