Newline character in file

Hi All,I am writing my output to a file .....I want to write the subsequent outputs to the same file accompanied by newline character...How do i do that?
[181 byte] By [SDBa] at [2007-11-27 0:27:41]
# 1

Use a PrintStream (or its equivalent Writer) and let the println()

method do its job, i.e. it will print the correct newline combination

depending on your platform. If you must do it yourself have a look at

the System.getProperty("line.separator") property.

kind regards,

Jos

JosAHa at 2007-7-11 22:27:42 > top of Java-index,Java Essentials,Java Programming...