Your preferences have been saved!
» Text to Postscript - import java.io.*; /** Text to PS */ public class PSFormatter {   /** The current input source */   protected BufferedReader br;   /** The current page number */   protected int pageNum;   /** The current X and Y on the page */   protected int curX, curY;   /** The current line number on page */... 15 Feb 12 » Output to PDF file - import java.io.*; import java.text.*; import java.util.*; /** A simple text test of SPDF package  */ public class PDFDemo {   public static void main(String[] argv) throws IOException {     PrintWriter pout;     if (argv.length == 0) {       pout = new PrintWriter(System.out);... 15 Feb 12