Source Code : Table Cell Fitting Page
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Table Cell Fitting Page

import java.awt.Color;
import java.io.FileOutputStream;
import com.lowagie.text.Cell;
import com.lowagie.text.Document;
import com.lowagie.text.Element;
import com.lowagie.text.Font;
import com.lowagie.text.FontFactory;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;
import com.lowagie.text.Rectangle;
import com.lowagie.text.Table;
import com.lowagie.text.pdf.PdfWriter;
public class TableCellFitPagePDF {
public static void main(String[] args) {
Document document = new Document(PageSize.A4.rotate(), 50, 50, 50, 50);
try {
PdfWriter.getInstance(document, new FileOutputStream("TableCellFitPagePDF.pdf"));
document.open();
Table datatable = new Table(3);
int headerwidths[] = {10, 24, 12};
datatable.setWidths(headerwidths);
datatable.setWidth(46);
datatable.setPadding(3);
Cell cell = new Cell(new Phrase("title", FontFactory.getFont(FontFactory.HELVETICA, 24, Font.BOLD)));
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setLeading(30);
cell.setColspan(3);
cell.setBorder(Rectangle.NO_BORDER);
cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
datatable.addCell(cell);
datatable.setDefaultCellBorderWidth(2);
datatable.setDefaultHorizontalAlignment(1);
datatable.addCell("Header 1");
datatable.addCell("Header
2");
datatable.addCell("Header 3");
datatable.endHeaders();
datatable.setDefaultCellBorderWidth(1);
for(int i=0;i<200;i++){
datatable.setDefaultHorizontalAlignment(Element.ALIGN_LEFT);
datatable.addCell("1");
datatable.addCell("2");
datatable.addCell("3");
}
datatable.setCellsFitPage(true);
document.add(datatable);
} catch (Exception e) {
e.printStackTrace();
}
document.close();
}
}
Thank with us