gpt4 book ai didi

java - Excel,getStringCellValue 返回 float

转载 作者:太空宇宙 更新时间:2023-11-04 14:08:51 25 4
gpt4 key购买 nike

我正在从 Excel 单元格获取字符串。我的单元格中有一个整数。但这段代码带来了一个 float 。例如,在我的单元格中有一个数字 409,但它带来 409.0 如何解决此问题?我需要带准确的 409 吗?

 public String getCell(int x, int y) {

Cell cell = sheet.getRow(x).getCell(y);
if (cell.getCellType()
== Cell.CELL_TYPE_NUMERIC) {
return "" + cell.getNumericCellValue();
}
return "" + cell.getStringCellValue();
}

最佳答案

Math.round() 将舍入数字并返回 int

关于java - Excel,getStringCellValue 返回 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28574449/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com