We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While implementing the extractor on a main java method, I get the following error:
java.lang.NoSuchMethodError: com.google.common.collect.Range.closed(Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/google/common/collect/Range;
The program is as follows:
PDFTableExtractor extractor = new PDFTableExtractor(); extractor = extractor.setSource("C:/test.pdf"); extractor.addPage(0); extractor.exceptLine(0, new int[]{0, 1}); List<Table> tables = extractor.extract(); try (Writer writer = new OutputStreamWriter(new FileOutputStream("C:/Users/rys_s/Documents/MiArchivo.html"), "UTF-8")) { for (Table table : tables) { writer.write("Page: " + (table.getPageIdx() + 1) + "\n"); writer.write(table.toHtml()); } }
And the error comes apparently at the extractor.extract() line.
extractor.extract()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While implementing the extractor on a main java method, I get the following error:
java.lang.NoSuchMethodError: com.google.common.collect.Range.closed(Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/google/common/collect/Range;
The program is as follows:
And the error comes apparently at the
extractor.extract()
line.The text was updated successfully, but these errors were encountered: