0

I am new to Jsoup and I need to scrape the data from below webpage.

Here is the link.

Webpage

halfer
  • 19,824
  • 17
  • 99
  • 186
user6325753
  • 585
  • 4
  • 10
  • 33

1 Answers1

1

I'm unfamiliar with jsoup, but using this online soup parser I got some pretty good results with the query #box-table-a tbody tr td but it would need some refining and sorting.

The way I came to that query was by looking through the HTML code and identifying the div for each section, which has the id box-table-a, which all contain a tbody, tr, and td element.

Joe Howard
  • 307
  • 5
  • 27