I have the following code:
BufferedWriter buffWriter = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile)));
buffWriter.write("\"time\",\"x voltage\", z voltage \n");
Later on, I call buffwriter.write again:
buffWriter.write("\"" + time[i] + "\",\"" + an_array[i] + "\", \"" + an_array2[i] + ",\n");
Everything is fine, except one really small thing. There is a ” on the left side my an_array2 values. How do i get rid of this?
You may try using the following code