You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Richard (Jira)" <ji...@apache.org> on 2019/11/29 04:04:00 UTC

[jira] [Created] (PDFBOX-4700) Error: java.net.ConnectException: Operation timed out (Connection timed out)

Richard created PDFBOX-4700:
-------------------------------

             Summary: 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


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: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org