I have big problem with reading big numbers from excel in java. When i read 71674705 i get 7.1674705E which is not ok.
Example:
double num =
cell.getNumericCellValue();
how can i prevent conversion between numbers that number will stay like 71674705.
The number itself is not changing, only the representation when you convert it to a String. A
doublevariable like you are using does not have an explicit format defined.You can use
java.text.NumberFormat(javadoc) to format the number any way you would like to see it.