Good day,
I have a java web application which allow user to download some data in csv format.
Everything is fine unless I have numeric data but start with 0, for example 010.
I wish to store 010 correctly into the csv file, but it will auto change to 10.
In my java code, I tried to append ' in front of the number, but it will store to '010 instead of 010
data.alignCenter().text( "'010" ); \\ data is my TableBuilder object.
Kindly advise.