Inserting a page Break in a text file by inserting FormFeed Character. Is this Universal solution?
问题 Inserting a page Break in a text file by inserting FormFeed Character using Java. Is my solution universal or will it cause any problems? Sample Code: PrintWriter bof = response.getWriter(); // Obtained Writer from HTTP Response bof.write("Para 1"); // Write 1st Para to printWriter bof.write(new Character((char) 12).toString()); // Write Form Feed Character for Page Break bof.write("Para 1"); // Write 2nd Para to printWriter My Concerns: The Solution is working but below my 2 concenrs: Point