I am trying to read the values from excel sheet using java. When i type more than 10 letters in a cell in excel it is displaying in exponential form like \"9.78313E+2\". but
This answer worked for me:
Double bd = new Double(4445566622); System.out.println(bd.longValue()); // Outputs -4445566622