本文介绍了我怎样才能读取Excel单元格与Apache POI数字字符串作为字符串(而不是数字)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
-
我让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单元格与Apache POI数字字符串作为字符串(而不是数字)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!