GUI utility of Apache Tika provides an option for getting main content ( apart from format text and structured text ) of the given document or the URL. I just want to know which method is responsible for extracting the main content of the docs/url. So that I can incorporate that method in my program. Also whether they are using any heuristic algorithm while extracting data from HTML pages. Because sometimes in the extracted content, I can't able to see the advertisements.

UPDATE : I found out that BoilerPipeContentHandler is responsible for it.

link|improve this question

62% accept rate
feedback

2 Answers

The "main content" feature in the Tika GUI is implemented using the BoilerpipeContentHandler class that relies on the boilerpipe library for the heavy lifting.

link|improve this answer
will it work only for HTML pages or all. Because from the Boilerpipe docs, I can see it mainly support HTML pages only. – scooby Feb 9 at 4:22
Also can you help tell me how to control whitespaces and newline in Tika output. Because output of tika contains more whitespace and newline – scooby Feb 9 at 4:32
feedback

I believe this is powered by the BodyContentHandler, which fetches just the HTML contents of the document body. This can additionally be combined with other handlers to return just the plain text of the body, if required.

link|improve this answer
I tried it but it can't extract the main content. – scooby Feb 8 at 5:05
It works in all the unit tests... I'd suggest you take a look at how it's used in those, and compare that to your use – Gagravarr Feb 8 at 12:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.