使用Java读取Excel文件(特别是出生日期)

时间:2014-11-20 15:50:07

标签: java excel

我正在尝试使用java从e​​xcel文件中读取出生日期,但问题是,输入包含值“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+"'";
}

0 个答案:

没有答案