-3
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
4

1 回答 1

2

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

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

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

有关 iText 在其 网站上的更多信息。

于 2012-05-24T01:09:38.953 回答