iText로 Pdf 문서 안에 다중 테이블 만들기
http://itextpdf.com/ 현재 최신버전 : 5.1.0 주요 클래스 com.itextpdf.text.pdf.PdfPTable 생성자는 초기값으로 열의 개수를 정한다. : PdfPTable(float[] relativeWidths), PdfPTable(int numColumns) com.itextpdf.text.pdf.PdfPCell 소스 : 전체 프로세스 관리 document.add(table) public void createPdf(String filename) throws DocumentException, IOException { // step 1 document = new Document(); // step 2 PdfWriter.getInstance(document, new FileOut..
프로그래밍
2011. 5. 27. 10:15