本文介绍了如何将Excel单元格中的数字字符串作为字符串(而不是数字)读取?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
-
我的excel文件包含以下内容:
I have excel file with such contents:
-
A1:SomeString
A1: SomeString
A2:2
所有字段均为设置为字符串格式。
All fields are set to String format.
当我使用POI在java中读取文件时,它告诉A2是数字格式的格式。
When I read the file in java using POI, it tells that A2 is in numeric cell format.
如何将值读取为字符串?
What can I do to read the value as string?
推荐答案
我遇到了同样的问题。我在读取字符串值之前做了 cell.setCellType(Cell.CELL_TYPE_STRING);
,这解决了问题,无论用户如何格式化单元格。
I had same problem. I did cell.setCellType(Cell.CELL_TYPE_STRING);
before reading the string value, which solved the problem regardless of how the user formatted the cell.
这篇关于如何将Excel单元格中的数字字符串作为字符串(而不是数字)读取?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!