1

To parse the HTML to get the images I used jsoup..But by using Jsoup if I parsed www.google.com it is showing zero images. In google HTML page images are in form "background:url(/intl/en_com/images/srpr/logo1w.png" . I want to get the list of all images from HTML. How can i do this..please help.. Thanks in advance...

Sri Sri
  • 3,107
  • 7
  • 34
  • 37
  • Don't flag for mod attention because you want help. Its an abuse of the system. If you cannot find any answers, you will be able to place a bounty on the question in a couple days. –  Feb 01 '11 at 14:25

1 Answers1

0

I think you are in a right way. You should just to take the value from html.

Here is @BalusC answer

Element something = document.select("input[name=something]").first();
String value = something.val();
Community
  • 1
  • 1