This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
server
/
easypoi
Watch
6
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
解析公式CELL_TYPE_FORMULA类型时,直接取单元格的值,而非取公式;
4.1.3.A
曾维嘉
6 years ago
parent
ad1ddff0f2
commit
51d2b777f2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiCellUtil.java
+ 1
- 1
easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiCellUtil.java
View File
@@ -114,7 +114,7 @@ public class PoiCellUtil {
} else if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) {
return cell.get
CellFormula
();
return cell.get
StringCellValue
();
} else if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
Write
Preview
Loading…
Cancel
Save