Java error to read pdf file

조회 수: 16 (최근 30일)
Adriano
Adriano 2017년 5월 26일
답변: J Philps 2017년 5월 31일
I'm trying to open a PDF file in matlab through java. The code is:
clear java
javaaddpath('C:\Users\AURYN BASE 1\Downloads\pdfbox-2.0.6.jar')
javaaddpath('C:\Users\AURYN BASE 1\Downloads\fontbox-2.0.6.jar')
pdfdoc = org.apache.pdfbox.pdmodel.PDDocument;
reader = org.apache.pdfbox.text.PDFTextStripper;
pdfdoc = pdfdoc.load('efa.pdf');
Then, I recive the error:
No method 'load' with matching signature found for class 'org.apache.pdfbox.pdmodel.PDDocument'.
I see that code in many websites but I can't execute it. Any suggestions? Many thanks!
  댓글 수: 1
Adriano
Adriano 2017년 5월 26일
I recive the same error also with earlier versions of pdfbox!

댓글을 달려면 로그인하십시오.

답변 (1개)

J Philps
J Philps 2017년 5월 31일
Overall that error message seems to be indicating that load is not a valid method name (or the input is not in the expected format) for objects of type org.apache.pdfbox.pdmodel.PDDocument. Maybe it expects a string in double quotes?
Also, I am not sure what your use case is, but if you are extracting text from the pdf document, then this File Exchange post may be useful:
https://www.mathworks.com/matlabcentral/fileexchange/19798-extract-text-from-a-pdf-document

카테고리

Help CenterFile Exchange에서 Call Java from MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by