Setting Excel cell value in Numeric format using POI

后端 未结 4 1924
忘掉有多难
忘掉有多难 2021-02-19 04:33

I want to store numeric data in excel sheet.
The numeric data is represented by String type in my java code.
Is it possible to set it as numeric without casting it?

4条回答
  •  一生所求
    2021-02-19 05:25

    I used Big Decimal for this,

    dCell.setCellValue(new BigDecimal("112.45").doubleValue());
    

提交回复
热议问题