Values of excel field is getting 3.0E9 where I need 3000000000 when trying to parse
问题 i have an excel to upload which has a column material id.That column contains alphanumeric values,But when i am trying to upload this file value the uploaded column in the jsp page is taking an unexpected E and also taking decimal of that number i am using apache POI to parse the excel.Here i have done so far while(rowIterator.hasNext()) { boolean isValidentry=true; System.out.println("Row number =" + (i+1)); Row row = rowIterator.next(); CategoryObject categoryObject = new CategoryObject();