Genarate a pdf.


import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfWriter;


public class HelloWordPDF {
public static void main(String arg[])throws Exception
    {
     Document document=new Document();
     PdfWriter.getInstance(document,new FileOutputStream("hello.pdf"));
    document.open();
    document.add(new Paragraph("Hello Pdf"));
    document.close();
    System.out.println("naveen");
    }
}

Popular posts from this blog

Simple Sign up design. Android.

Cart page design in android.

Set Date on jDateChooser and retrieve record from database.