Commit 65f75796 authored by Amirhosein Rajabpour's avatar Amirhosein Rajabpour

first commit

parents
Pipeline #305 canceled with stages
File added
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.parser.PdfTextExtractor;
public class Main {
public static void main(String[] args) {
try {
PdfReader pdfReader = new PdfReader("Lab1.pdf");
System.out.println(pdfReader.getNumberOfPages());
} catch (Exception e) {
e.printStackTrace();
}
int pages = pdfReader.getNumberOfPages();
for (int i = 1; i <= pages; i++) {
String pageContent = PdfTextExtractor.getTextFromPage(pdfReader, i);
System.out.println("Content on Page " + i + ": " + pageContent);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment