Question

So, I've got the following code to write to a file:

Formatter output = ....... // Creating the formatter works, writes to appropriate file.

output.format("%d\n", records.length);
for(GradeRecord gR:records)
{
    output.format(gR.toString() + "\n");
}

Only problem is, the output doesn't have newline characters.

Doesn't work if I replace "\n" with "\r", either.

...I don't know why this doesn't work. Output is created and writes correctly. (I see the file created and everything is written in it, except for newline characters.)

Was it helpful?

Solution

you can use the format "%n" to output the platform specific newline using a formatter.

OTHER TIPS

You want to use the correct line break string regardless of what platform it's being run on. You can do this dynamically using

String newline = System.getProperty("line.separator");

So you can later do

output.format(gR.toString() + newline);

You can try using \\n instead of \n

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top