我该如何下载java的Package PDF

时间:2012-05-24 00:59:59

标签: java pdf package

public void createPDF( String path ) {  
    // Met deze functie  wordt er een PDF aangemaakt van de huidige factuur  

    try {  
        Document document = new Document();  
        PdfWriter.getInstance(document, new FileOutputStream(path + ".pdf"));  
        document.open();  
        document.add(new Paragraph("Factuurid = " + Integer.toString(this.id)));  
        document.close();  
    } catch (Exception e) {  
        System.out.println(e);  
    }  
}///this shows errors

1 个答案:

答案 0 :(得分:2)

您可以下载iText,一个PDF创建库here。你需要解压缩文件,里面会有各种JAR。

您需要在项目设置中引用itextpdf-5.2.1.jar作为外部JAR。当然,版本号可能会有所不同。

在Eclipse Indigo中,您可以执行Project> Properties> Java Build Path> Libraries> Add external JARs。

有关iText Website的更多信息。