I'm looking to extract all the links from a web page using java.
Do you have any ideas ?
Thanks
|
|
download java file as plain text/html pass it through Jsoup or html cleaner both are similar and can be used to parse even malformed html 4.0 syntax and then you can use the popular HTML DOM parsing methods like getElementsByName("a") or in jsoup its even cool you can simply use
and find all links and then get the detials using
Taken from http://jsoup.org/cookbook/extracting-data/selector-syntax The selectors have same syntax as |
|||
|
|
|
You can use the HTML Parser library to achieve this:
|
|||
|
|
You would probably need to use regular expressions on the HTML link tags |
|||||
|
|
Either use a Regular Expression and the appropriate classes or use a HTML parser. Which one you want to use depends on whether you want to be able to handle the whole web or just a few specific pages of which you know the layout and which you can test against. A simple regex which would match 99% of pages could be this:
You can edit it to match more, be more standard compliant etc. but you would want a real parser in that case. If you are only interested in the href="" and text in between you can also use this regex:
And access the link part with .group(1) and the text part with .group(2) |
|||
|
|
check this out. |
|||||
|