[
https://issues.apache.org/jira/browse/PDFBOX-4700?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Tilman Hausherr closed PDFBOX-4700.
-----------------------------------
Resolution: Invalid
Closing as this is most likely not a PDFBox problem. You can still comment or
reopen. Try this code to download the PDF, just so that you see that it works
(or fails):
{code}
IOUtils.toByteArray(new
URL("http://www.africau.edu/images/default/sample.pdf").openStream());
{code}
> Error: java.net.ConnectException: Operation timed out (Connection timed out)
> ----------------------------------------------------------------------------
>
> Key: PDFBOX-4700
> URL: https://issues.apache.org/jira/browse/PDFBOX-4700
> Project: PDFBox
> Issue Type: Bug
> Reporter: Richard
> Priority: Major
>
> This is the Java Class:
> +++++++++++++++++++++++++++
> package com.pdfTrial;
> import java.io.BufferedInputStream;
> import java.net.MalformedURLException;
> import java.net.URL;
> import java.io.InputStream;
> import org.apache.pdfbox.pdmodel.PDDocument;
> import org.apache.pdfbox.text.PDFTextStripper;
> public class pdfBoxRead {
> public String readPDF() throws MalformedURLException {
> String pdfContent = "";
> URL url = new URL("http://www.africau.edu/images/default/sample.pdf");
> try {
> url.openConnection().setConnectTimeout(30000);
> InputStream is = url.openStream();
> BufferedInputStream fileParse = new BufferedInputStream(is);
> PDDocument document = null;
> document = PDDocument.load(fileParse);
> pdfContent = new PDFTextStripper().getText(document);
> System.out.println(pdfContent);
> } catch (Exception e) {
> System.out.println("Error" + e);
> }
> return pdfContent;
> }
> }
>
> *Expected Result*:
> Return the string value of PDF
>
> *Actual Result*:
> java.net.ConnectException: Operation timed out (Connection timed out)
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]