我正在尝试使用 Java 创建 PDF 文件。我所看到的是我必须拥有 iText 库,所以我去了,我得到了它。
这是我写的一段代码,但它充满了错误......这里出了点问题。
//com.lowagie.text.pdf.PdfWriter
public class document {
Document document = new Document (PageSize.A4, 50, 50, 50, 50);
PdfWriter writer = PdfWriter.getInstance(document, \
new FileOutputStream("C:\ITextTest.pdf"));
document.open();
document.add(new Paragraph("First page of the document."));
//document.add(new Paragraph("Some more text on the \ first page with different color and font type.",
//FontFactory.getFont(FontFactory.COURIER, 14, Font.BOLD, new Color(255, 150, 200))));
document.close();
}