背景
我有一个Excel文件(xlxs),其中包含许多日期时间和小数,我想将其转换为二维字符串数组。数组中的字符串应该与用户将它们输入到excel中完全一致。为此,我使用NPO版本2.2.1和C#。
请注意,示例中的A列格式化为Excel中的日期!
COLUMN A COLUMN B
2016-07-20 -46,95
2016-07-20 283,59
2016-07-20 -46,95
2016-07-20 52194,64
我有一个泛型方法ConvertCellToString(),它将一个单元格转换为正确的字符串表示形式:
private string GetCellAsString(ICell cell)
{
switch (cell.CellType)
{
case CellType.Boolean:
return cell.BooleanCellValue.ToString();
case CellType.Error:
return cell.ErrorCellValue.ToString();
case CellType.Formula:
return cell.CellFormula.ToString();
//ALL CELLS IN THE EXEMPEL ARE NUMERIC AND GOES HERE
case CellType.Numeric:
return cell.NumericCellValue.ToString();
case CellType.String:
return cell.StringCellValue.ToString();
case CellType.Blank:
case CellType.Unknown:
default:
return "";
}
}
但是,由于即使是日期时间单元格也是数字单元格,此解决方案会导致下面的所有日期错误地表示为数字而不是日期(“21672”而不是“2016-07-20”等)
下面的方法需要区分具有日期时间的数字单元格与具有数字的数字单元格。 NPOI有没有办法做到这一点?我宁愿不去解析字符串,特别是因为NPIOs cell.ToString()返回可怕的“2016-jan-20”格式,如果它是一个日期。
我几乎被困在这里,所以非常感谢帮助!必须有一些明显的最佳实践,我找不到!
答案 0 :(得分:11)
原来可以使用DateUtil.IsCellDateFormatted():
case CellType.Numeric:
{
return DateUtil.IsCellDateFormatted(cell)
? cell.DateCellValue.ToString()
: cell.NumericCellValue.ToString();
}