Pdf action: open application (notepad.exe) : PDF Action « PDF RTF « Java






Pdf action: open application (notepad.exe)

Pdf action: open application (notepad.exe)
import java.io.FileOutputStream;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfAction;
import com.lowagie.text.pdf.PdfWriter;

public class OpenApplicationPDF {
  public static void main(String[] args) {
    Document document = new Document(PageSize.A4, 50, 50, 50, 50);
    try {
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("OpenApplicationPDF.pdf"));
      document.open();
      String application = "notepad.exe";
      Paragraph p = new Paragraph(new Chunk("Click to open " + application).setAction(new PdfAction(application, null, null, null)));
      document.add(p);
    } catch (Exception de) {
      de.printStackTrace();
    }
    document.close();

  }
}
           
       








itext.zip( 1,748 k)

Related examples in the same category

1.PdfAction: Goto Another Pdf FilePdfAction: Goto Another Pdf File
2.PdfAction: Goto Local Page 1PdfAction: Goto Local Page 1
3.PdfAction: Goto Local Page 2PdfAction: Goto Local Page 2
4.Named Actions in PDF DocumentNamed Actions in PDF Document
5.Pdf action: jump locallyPdf action: jump locally
6.Chained ActionsChained Actions