ExtractPDF4J Documentation

⬅ Back to Home

Installation

Add ExtractPDF4J to your Maven/Gradle project:

Maven:
<dependency>
  <groupId>com.extractpdf4j</groupId>
  <artifactId>extractpdf4j</artifactId>
  <version>1.0.0</version>
</dependency>

Gradle:
implementation 'com.extractpdf4j:extractpdf4j:1.0.0'
    

Usage Example

PdfHandler handler = new PdfHandler("sample.pdf");
List tables = handler.parse("lattice");

for (Table t : tables) {
    System.out.println(t.toCsv());
}
    

Contributing

We welcome contributions! Fork the repo, open issues, and raise PRs 🚀

ExtractPDF4J © 2025 | Apache License 2.0