Package com.hmkcode

Source Code of com.hmkcode.HelloWorld

package com.hmkcode;

import java.io.FileNotFoundException;
import java.io.FileOutputStream;

import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;


public class HelloWorld
{
    public static void main( String[] args )
    {
        try {
         
          // 1. create the document
          Document document = new Document();
          // 2. get PdfWriter
      PdfWriter.getInstance(document, new FileOutputStream("helloworld.pdf"));
      // 3. open the document
          document.open();
          // 4. add the content
          document.add(new Paragraph("Hello World!"));
          // 5. close the document
          document.close();
         
          System.out.println("Document created!");
     
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (DocumentException e) {
      e.printStackTrace();
    }     
    }
}
TOP

Related Classes of com.hmkcode.HelloWorld

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.