หลังจาก Download แล้วเราจะได้ไฟล์ jar ให้ Copy ไปไว้ในโฟเดอร์ lib ของ Project
คลิกขวาที่ Project เลือก Properties
ในส่วนของ Java Build Path ให้เลือก Add JARs...
เลือก Library ของไฟล์
ตอนนี้เราได้ Library ที่ร้องใช้เรียบร้อยแล้ว
Example ตัวอย่างการสร้าง PDF แบบง่าย ๆ ด้วย Java
MyClass.java
package com.java.myapp;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
import org.apache.pdfbox.pdmodel.edit.PDPageContentStream;
import org.apache.pdfbox.pdmodel.font.PDFont;
import org.apache.pdfbox.pdmodel.font.PDType1Font;
public class MyClass {
public static void main(String[] args) {
try {
PDDocument document = new PDDocument();
PDPage page = new PDPage();
document.addPage( page );
// Create a new font object selecting one of the PDF base fonts
PDFont font = PDType1Font.HELVETICA_BOLD;
// Start a new content stream which will "hold" the to be created content
PDPageContentStream contentStream = new PDPageContentStream(document, page);
// Define a text content stream using the selected font, moving the cursor and drawing the text "Hello World"
contentStream.beginText();
contentStream.setFont( font, 12 );
contentStream.moveTextPositionByAmount( 100, 700 );
contentStream.drawString( "Welcome to ThaiCreate.Com" );
contentStream.endText();
// Make sure that the content stream is closed:
contentStream.close();
// Save the results and ensure that the document is properly closed:
document.save( "C:\\java\\myPDF.pdf");
document.close();
System.out.println("PDF Created Done.");
} catch (Exception e) {
e.printStackTrace();
}
}
}