Hi All, I am using Apache POI to extract data from Excel file and print it to text file.
However for some excel sheets while writting the data to text file, numbers are getting added with .0 For example - 9999999 is getting added as - 9999999.0 Snippet from my code for writting the data- *out.write(cell.toString());* Any clue? Cheers, Parag
