Tagged Questions

0
votes
0answers
59 views

Saving text from a file into an array and writing the array to a different file Java

I am trying to read text from a file and turn that text into an array, and then print that array to a different file in the exact format that the text of the original file was in. I cannot use a try ...
0
votes
1answer
128 views

Line by line file operation in Android

i am trying to do what FileWriter.println() and BufferedReader.readLine() do in Android, but in android they only allow writing it into the sdcard using those method. i need to write some integer ...
-1
votes
4answers
279 views

Why is nothing being written to a file?

I am creating and writing to a file using the following pattern: File afile = new File("C:/dev/ws/DataOrdering/data/" + thisDate + "_" + thisTime + "_visdata.csv"); FileWriter writer = new ...