I am trying to get all of the links to the songs on the side of google after you search for the band and album ex: https://www.google.com/search?q=disturbed+asylum&ie=utf-8&oe=utf-8
So I have tried quite a bit on my own. I've used:
File input = new File("/tmp/input.html");
Document doc = Jsoup.parse(input, "UTF-8", "http://example.com/");
Elements links = doc.select("a[href]");
and then printed out all of the links, but it didn't get the links to the side this way. I then tried to get the html code and then search for the table through there but it didn't pull the table for some reason. Anyone have any suggestions?