PDFLayoutTextStripper
v2.2.5
Konvertiert eine PDF-Datei in eine Textdatei und behält dabei das Layout der Original-PDF bei. Nützlich, um den Inhalt einer Tabelle oder eines Formulars in einer PDF-Datei zu extrahieren. PDFLayoutTextStripper ist eine Unterklasse der PDFTextStripper-Klasse (aus der Apache PDFBox-Bibliothek).
Datenextraktion aus einem Formular in eine PDF-Datei
<dependency>
<groupId>io.github.jonathanlink</groupId>
<artifactId>PDFLayoutTextStripper</artifactId>
<version>2.2.3</version>
</dependency>
Warnung : Nur PDFBox-Versionen ab Version 2.0.0 sind mit dieser Version von PDFLayoutTextStripper.java kompatibel
cd PDFLayoutTextStripper
javac -cp .:/pathto/pdfbox-2.0.6.jar:/pathto/commons-logging-1.2.jar:/pathto/PDFLayoutTextStripper/fontbox-2.0.6.jar *.java
java -cp .:/pathto/pdfbox-2.0.6.jar:/pathto/commons-logging-1.2.jar:/pathto/PDFLayoutTextStripper/fontbox-2.0.6.jar test
Das Gleiche wie für Linux (siehe oben), aber ersetzen Sie : durch ;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.pdfbox.io.RandomAccessFile;
import org.apache.pdfbox.pdfparser.PDFParser;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.text.PDFTextStripper;
public class test {
public static void main(String[] args) {
String string = null;
try {
PDFParser pdfParser = new PDFParser(new RandomAccessFile(new File("./samples/bus.pdf"), "r"));
pdfParser.parse();
PDDocument pdDocument = new PDDocument(pdfParser.getDocument());
PDFTextStripper pdfTextStripper = new PDFLayoutTextStripper();
string = pdfTextStripper.getText(pdDocument);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
};
System.out.println(string);
}
}
Dank