generate a4 size pdf.


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

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


public class a4 {
public static void main(String args[]) throws Exception, DocumentException
{
Document dc=new Document(PageSize.A4);
PdfWriter.getInstance(dc, new FileOutputStream("naveen.pdf"));
dc.open();
dc.add(new Paragraph("naveen & jyoti"));
dc.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.