I have an HTML snippet like this :
<a href="XXXXXXXXXXXXXXX" target="_blank" class="view_job_link">View or apply to job</a>
I want to read href value XXXXXXXXXX using Java.
Point to note: I am reading the HTML file from a URL using inputstreamreader(url.openStream()).
I am getting a complete HTML file, and above snippet is a part of that file.
How can I do this?
Thanks
Karunjay Anand