当我使用 Apache POI 将长值写入 Excelsheet 中的单元格时,它会通过一些数值操作来写入它。例子:
cell = row.createCell(6);
cell.setCellValue(someObt.getLongValue());
// long value returned is 365646975447
// in excel sheet, it is written as 3.65647E+11.
// but when i click on the cell, i can see 365646975447 as the value.
我希望它在我写的时候显示确切的值。我怎样才能做到这一点?