there is such a code
String file = "C:\\Users\\Администратор\\Desktop\\ewq\\asd.xlsx"; // TODO Auto-generated method stub File excel = new File (file); FileInputStream fis = new FileInputStream(excel); XSSFWorkbook wb = new XSSFWorkbook(fis); XSSFSheet ws = wb.getSheetAt(0); int rowNum = ws.getLastRowNum() + 1; int colNum = ws.getRow(0).getLastCellNum(); String [][] data = new String [rowNum] [colNum]; for(int i = 0; i <rowNum; i++){ XSSFRow row = ws.getRow(i); for (int j = 0; j < colNum; j++){ XSSFCell cell = row.getCell(j); String value = cell.toString(); data[i][j] = value; System.out.println ("the value is " + value); } } inside excel file
321312321321 321312321321 321312321321 numbers with a length of 12 ++;
when I run the code, why does the string have such a format the value is 3.21312321321E11 , how can I get the correct format?