我正在尝试使用java从excel文件中读取出生日期,但问题是,输入包含值“14/7/1993”,但我的代码导致输出“1900-04-14” 。 这是我的代码
String getDate(XSSFRow row, int index)
{
XSSFCell cell = row.getCell(index);
cell.setCellType(2); // Formula Type
Date date = cell.getDateCellValue();
DateFormat dateformat = new SimpleDateFormat("yyyy-MM-dd");
String result = dateformat.format(date);
System.out.println("date: "+result);
return "'"+result+"'";
}