c#npoi 报错Cannot get a numeric value from a text cell 的解决
2021-04-08 15:24
标签:getc 文本格式 poi long row 设置 数字 get not Row.GetCell((int)customer_level_index).SetCellType(CellType.String); POI 实际上setCellValue的时候根据传入参数的类型会自动设置celltype,所以
c#npoi 报错Cannot get a numeric value from a text cell 的解决 标签:getc 文本格式 poi long row 设置 数字 get not 原文地址:https://www.cnblogs.com/zuochanzi/p/9083676.html一般是因为cell里边的值为数字导致,有时变成文本格式还是解决不了这个问题.
下边的代码是c# 改变设置cell类型的方法 是用这个参数 CellType.String
detail.customer_level = Row.GetCell((int)customer_level_index).StringCellValue;
这个下边是网上的
上一篇:C#加密之md5加密
下一篇:C#接口的作用
文章标题:c#npoi 报错Cannot get a numeric value from a text cell 的解决
文章链接:http://soscw.com/index.php/essay/72914.html