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();
}