NPOI 读取excel的时候,时间格式的处理
excel的时间格式是:CellType.Numeric
要判断时间还需要方法:DateUtil.IsCellDateFormatted(cell)的帮助:
示例代码如下:
ICell cell = row.GetCell(j); if (cell.CellType == CellType.NUMERIC && DateUtil.IsCellDateFormatted(cell)) dataRow[j] = cell.DateCellValue.ToString("yyyy/MM/dd"); else { dataRow[j] = row.GetCell(j).ToString(); }