我从Excel单元格中获取字符串。在我的单元格中有一个整数。但是这段代码带来了浮动。例如,在我的单元格中有一个数字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

10-06 06:27