티스토리 뷰

프로그래밍

자바 iText 사용법

앙망 2011. 5. 24. 12:02

http://itextpdf.com/

현재 최신버전 : 5.1.0

iText 기능

overview of possible PDF functionality

bulletSupported by iText
bulletPartly supported by iText


PDF 생성하기

    public void createPdf(String filename)
		throws DocumentException, IOException {
        // step 1
        Document document = new Document();
        // step 2
        PdfWriter.getInstance(document, new FileOutputStream(filename));
        // step 3
        document.open();
        // step 4
        document.add(new Paragraph("Hello World!"));
        // step 5
        document.close();
    }

댓글