I download tikacore and tikaparse libraries but I could not find the example codes to parse html codes to string? I have to get rid of all html tag of source of a web page . What can i do? how i can find codes of apache tika?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Do you want a plain text version of a html file? If so, all you need is something like:

        InputStream input = new FileInputStream("myfile.html");
        ContentHandler handler = new BodyContentHandler();
        Metadata metadata = new Metadata();
        new HtmlParser().parse(input, handler, metadata, new ParseContext());
        String plainText = handler.toString();

The BodyContentHandler, when created with no constructor arguments or with a character limit, will capture the text (only) of the body of the html and return it to you.

link|improve this answer
feedback

take a look at the example it may help you

http://blog.jeroenreijn.com/2010/04/metadata-extraction-with-apache-tika.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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