getCellType已经过折旧,我在文档中看不到相同的内容。
任何人都知道使用最新版本的poi
来获取细胞类型的方法此致 利宾塞巴斯蒂安
答案 0 :(得分:1)
您可以根据Apache POI documentation使用getCellTypeEnum
方法。它将返回CellType
,其中包含以下单元格类型 _NONE,BLANK,BOOLEAN,ERROR,FORMULA,NUMERIC 或 STRING 。
_NONE-Unknown type, used to represent a state prior to initialization or the lack of a concrete type.
BLANK-Blank cell type
BOOLEAN-Boolean cell type
ERROR-Error cell type
FORMULA-Formula cell type
NUMERIC-Numeric cell type (whole numbers, fractional numbers, dates)
STRING-String (text) cell type