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?
I used Big Decimal for this,
dCell.setCellValue(new BigDecimal("112.45").doubleValue());