Outline Actions Remote : Outline « PDF RTF « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java Tutorial
Java Book
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
SCJP
Java » PDF RTF » OutlineScreenshots 
Outline Actions Remote
Outline Actions Remote

import java.io.FileOutputStream;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfAction;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfDestination;
import com.lowagie.text.pdf.PdfOutline;
import com.lowagie.text.pdf.PdfWriter;

public class OutlineActionsRemotePDF {
  public static void main(String[] args) {
    Document document = new Document();
    Document remote = new Document();
    try {
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("OutlineActionsRemotePDF.pdf"));
      PdfWriter.getInstance(remote, new FileOutputStream("remote.pdf"));
      
      writer.setViewerPreferences(PdfWriter.PageModeUseOutlines);
      remote.open();
      document.open();
      document.add(new Paragraph("Outline action example"));

      PdfContentByte cb = writer.getDirectContent();
      PdfOutline root = cb.getRootOutline();
      PdfOutline links = new PdfOutline(root, new PdfAction("http://www.java2s.com")"Useful links");

      new PdfOutline(root, new PdfAction("remote.pdf"1)"Go to yhe first page of a remote file");
      new PdfOutline(root, new PdfAction("remote.pdf""test")"Go to a local destination in a remote file");

      remote.add(new Paragraph("Text"));
      remote.newPage();
      Paragraph p = new Paragraph("This paragraph contains a ");
      p.add(new Chunk("local destination").setLocalDestination("test"));
      remote.add(p);
      
    catch (Exception ioe) {
      System.err.println(ioe.getMessage());
    }
    document.close();
    remote.close();
  }
}
           
       
itext.zip( 1,748 k)
Related examples in the same category
1.Outline Actions HyperLinkOutline Actions HyperLink
2.Outline Actions: JavaScript CodeOutline Actions: JavaScript Code
3.Outline Actions with SubitemsOutline Actions with Subitems
4.Outline with StyleOutline with Style
ww__w_.___ja___v_a__2s_.__c___o___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.