Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从具有小数的 Excel 表中读取数据。
我想获得不带小数的结果。
我正在使用 cell.getNumericCellValue ()它给出小数 - 是否有一个删除小数的函数。
cell.getNumericCellValue ()
将值转换为 int 怎么样?
(int)cell.getNumericCellValue()