Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know How can I crawl pdf files that are served on internet using Nutch-1.0 using http protocol

I am able to do it on local file systems using file:// protocol but not http protocol

share|improve this question

1 Answer

add this property in the nutch-site.xml file then you will crawl the pdf files

<property>
<name>plugin.includes</name>
<value>protocol-httpclient|urlfilter-regex|parse-(html|text|pdf)|index-(basic|anchor)|query-(basic|site|url)|response-(json|xml)|summary-basic|scoring-opic|urlnormalizer-(pass|regex|basic)</value>
<description>protocol-httpclient|urlfilter-regex|parse-(html|text|pdf)|index-(basic|anchor)|query-(basic|site|url)|response-(json|xml)|summary-basic|scoring-opic|urlnormalizer-(pass|regex|basic)</description>
</property>
share|improve this answer
hi, can you please explain the property value. I am a newbie! – change Apr 5 at 7:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.