Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
Convert ZIP To PDF
Lets discuss the conversion of a zipped file into pdf file with the help of an example.
 
 

Convert ZIP To PDF

                         

Lets discuss the conversion of a zipped file into pdf file with the help of an example.

Download iText API required for the compilation of this example from the link http://www.lowagie.com/iText/download.html.

First set the class path for jar file by using the following steps:

1.Download the iText jar files.
2.Unzip all  the .jar files.
3.Copy all .jar files into lib directory of jdk. e.g. For jdk1.6.0 we need to copy  C:\jdk1.6.0\lib.
4.Set the classpath by using the following steps.
Right click on " My Computer->Click on Properties->Advanced->Environment variables 

In the Environment variable check whether the classpath is set or not in the variable "classpath". If the path is not set then click on "Edit" button (if variable classpath is already created otherwise create the variable "classpath") and set the full path with the name of iText API .jar files then click on OK and Apply button.

Pass the name of  a zipped  file  through command line argument. Take the zipped file as input by using the FileInputStream. Read this file from  the system, unzip it and then store it into a byte array. Convert this array of byte into the string by using the string class constructor.Generate a pdf file by using the following steps.

1.Create an instance of the Document class. The Document class describes a document's page size, margins, and other important attributes. The Document class act as a container for a document's sections, images, paragraphs, chapters and other contents.
2.Open the document by using doc.open ().
3.Pass the string into the paragraph by using the code Paragraph p = new Paragraph (String str).
6.Add this paragraph to the document by using doc.add(p).
Create a pdf file and pass this document in this pdf file by using the code PdfWriter.getInstance (doc, new FileOutputStream ("pdfFile.pdf")) for creating a PDF document writer
5.Close the document by using doc.close ().
Here is the code of the program :

import java.io.*;
import java.awt.*;
import com.lowagie.text.*;
import com.lowagie.text.pdf.*;
import java.io.*;
import java.util.zip.*;
public class  ZipToPDF
{     
public static void main(String arg[])throws Exception
      {              
       System.out.println("Hello RoseIndia");
       Document document = new Document(
PageSize.A4, 36, 72, 108, 180);
       PdfWriter.getInstance(document,System.out);
       PdfWriter.getInstance(document,new 
FileOutputStream("pdfFile.pdf"));
       document.open();
       ZipInputStream  zip = new ZipInputStream(new 
BufferedInputStream(new FileInputStream(arg[0])));
       ZipEntry entry;
       while((entry = zip.getNextEntry()) != null)
    {
    byte data[]=new byte[1024];
    int count;
    String text="";
    while((count=zip.read(data,0,1024))!=-1)
    {
    text=new String(data);
    document.add(new Paragraph(text));
    } 
      } 
      document.close();
      }
}

Output of The Example:


Download this example.

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.