PDF Java Tutorial

import java.io.FileOutputStream;
import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.pdf.PdfAction;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfOutline;
import com.lowagie.text.pdf.PdfWriter;
public class MainClass {
  public static void main(String[] args) throws Exception {
    Document document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("2.pdf"));
    writer.setViewerPreferences(PdfWriter.PageModeUseOutlines);
    document.open();
    document.add(new Chunk("asdf").setLocalDestination("Title"));
    PdfContentByte cb = writer.getDirectContent();
    PdfOutline root = cb.getRootOutline();
    PdfOutline links = new PdfOutline(root, new PdfAction(), "Useful links");
    links.setOpen(false);
    new PdfOutline(links, new PdfAction("http://www.rntsoft.com"), "rntsoft.com");
    PdfAction chained = PdfAction.javaScript("app.alert('alert');\r", writer);
    chained.next(new PdfAction("http://www.rntsoft.com"));
    document.close();
  }
}
/**/