verify if URLs of pdf documents are valids ?
in
Programming Questions
•
3 months ago
Hi,
I'd like to verify if many URLs of PDF document are valids or not.
I try first with :
and I just discovered the createInput function :
Do you think this is reliable ?
I mean if Processing return " sun.net.www.protocol.http.HttpURLConnection$HttpInputStream@ + numbers or letters" is that mean the link is valid ?
thanks
I'd like to verify if many URLs of PDF document are valids or not.
I try first with :
- XML xml;
- xml = importWML("myURL");
- println(xml);
and I just discovered the createInput function :
- InputStream input = createInput("http://www.theses.fr/2006PA083007/document");
- println(input);
Do you think this is reliable ?
I mean if Processing return " sun.net.www.protocol.http.HttpURLConnection$HttpInputStream@ + numbers or letters" is that mean the link is valid ?
thanks
1