While generating Text files dynamically how can we add "Page Break"
All,
While generating text files dynamically how can we add "next page" character as we do the next Line (/r/n) ?
Any clue please let me know the Syntax..
My file is as follows --
static BufferedWriter output;
output = new BufferedWriter(new FileWriter(newpath + File.separator + "TOL.txt"));
output.write(" writing all my strings here...... ");
output.newLine();
output.write("some more string here ... ");
output.newLine();
? need Page Break character ?/
Now i need the Page Break here before I write more
text to this file...
.....more text here...
output.flush();
output.close();
-
Thanx

