I read excel file correctly.For example my cell content is 0,987654321 in excel file.When I read it with jExcel api i reads just few chars of cell.For example 0,987.
here is my read excel code part:
Cell A = sheet.getCell(1, 1);
String stringA = A.getContents().toString();
How can I fix that problem.I want all content of cell.