I am trying to extract all the image url\'s from this webpage using jsoup? Can anyone offer help on how to do it? All the tags are formatted like this, but I only need the s
You should be able to do something like this to get all img tags:
for (Element e : doc.select("img")) { System.out.println(e.attr("src")); }
This should select all img tags and then grab the src attribute and print to the console.