my cell value in excel : 123123000
my code:
XSSFWorkbook workBook = new
XSSFWorkbook(yuklenenExcelInputStream);
XSSFSheet sheet = workBook.getSheetAt(0);
Iterator iter = sheet.rowIterator();
while(iter.hasNext()){
XSSFRow row = (XSSFRow)iter.next();
System.out.println("row.getCell() = " + row.getCell());
}
result:
row.getCell() =1.23123E8
i don't want it
i want it that way
row.getCell() = 123123000
please help me!
thanks
--
View this message in context:
http://apache-poi.1045710.n5.nabble.com/xssf-cell-value-end-of-zero-tp5711448.html
Sent from the POI - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]