我现在正在使用NPOI来处理Excel导出,这是我的代码(部分在.NET中):
<div id="chevron">
</div>
让我感到惊讶的是有一个数字字符串为“20150525”的列表,它将被分析为“2015 ...... E + 10”形成(科学数字形成)。 但是我想把它保持为字符串值。怎么样?
谢谢!
答案 0 :(得分:0)
实际上我们必须设置一个CellStyle,示例代码片段如下:
IRow row = book[0].CreateRow(rowIndex + 1);
ICell rowCell = null;
rowCell = row.CreateCell(colIndex);
rowCell.SetCellValue(realCellValue);
ICellStyle cellStyle = book.CreateCellStyle();
cellStyle.DataFormat = HSSFDataFormat.GetBuiltinFormat("@");
rowCell.CellStyle = cellStyle;