校外生活模拟器3
118.60M · 2026-02-11
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>3.0.6</version>
<scope>compile</scope>
</dependency>
public static void main(String[] args) throws FileNotFoundException {
FileInputStream fileInputStream = new FileInputStream("./报告.pdf");
String text = PDFUtil.pdfToString(fileInputStream);
System.out.println(text);
}