I am facing a problem caused by quotation mark, while trying to insert data into csv file. I have two elements: 20" and BI. After running through this sentence:
writers[k].write("\"" + tablelist.get(k).get(i)[j] + "\",");
They would be presented as :
"20",","BI"
In the csv file, it would be presented in a cell as 20",BI" rather than two separate elements.
Could anyone give me suggestions how to solve this problem?