How can I write a special character to a file like an end of line character.
What are you using to write to the file?
Just pass the character to the write method e.g
[CODE=java]bw.write(System .getProperty("l ine.separator") )[/CODE]
What are you using to write to the file?
Just pass the character to the write method e.g
[CODE=java]bw.write(System .getProperty("l ine.separator") )[/CODE]
Comment