java生成pdf文件

public static void main(String[] args) throws Exception {
  OutputStream file = new FileOutputStream(new File("D:\\aaa.pdf"));
  Document document = new Document();
  PdfWriter.getInstance(document, file);
  document.open();
  document.add(new Paragraph("Hello ZT"));
  document.add(new Paragraph(new Date().toString()));
  document.close();
  file.close();
 }

你可能感兴趣的:(JAVA生成PDF,生成PDF)