I am using APACHE POI & Java for reading Excel sheet and create a file of my format. But its noticed that when a number string is read, the code saves it in number format. E.g.
12345677
becomes
1.2345E7
How to format it correctly?
Current code
Vector cellStoreVector=(Vector)dataHolder.elementAt(0);
for (int j=0; j < cellStoreVector.size();j++){
HSSFCell myCell = (HSSFCell)cellStoreVector.elementAt(j);
String stringCellValue = myCell.toString();
bufferedWriter.write(stringCellValue + "|");
}