I need to extract relevant portion from a html file. If I search for an item instead of the whole data present in the html page, I need only the definition of the search item. For this I need to parse the html, construct the dom tree and extract relevant data. But how do I extract definition/uses/image of a search item from html file using dom?

Can anyone please help me with this. I am new to DOM?

link|improve this question
1  
Please, search before posting. Possible duplicate: stackoverflow.com/questions/238036/java-html-parsing – Jonathon Reinhart Jan 21 at 5:04
feedback

1 Answer

Using DOM you can get inner portion of this html

<html>
<body>

<a name="html">HTML Tutorial</a><br />
<a name="css">CSS Tutorial</a><br />
<a name="xml">XML Tutorial</a>

<p>innerHTML of the first anchor:
<script type="text/javascript">
   document.write(document.anchors[0].innerHTML);
</script>
</p>

This example you can get first anchor tag. (HTML Tutorial)

link|improve this answer
The OP wants to parse an HTML page using HtmlCleaner and retrieve a specific element on the page. What exactly is this? – Marvin Pinto Jan 21 at 5:21
When search is given, we will not be knowing where exactly the required content is present in the html page. So how to search the relevant text . – Komal V Jan 21 at 7:01
feedback

Your Answer

 
or
required, but never shown

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