I am trying to use the Jsoup java library to pull a random word from an online random word generator. Here is my code, the link to the random word generator is in there:
public class getWord {
public static void grabWord(){
Document doc = Jsoup.parse( "UTF-8", "http://watchout4snakes.com/CreativityTools/RandomWord/RandomWord.aspx");
Elements links = doc.getElementsByClass("randomWord");
String linkText = links.text();
System.out.println(linkText);
}
}
If you go into the random word generator link and view the source, there is this that contains the random word:
<span id="tmpl_main_lblWord" class="randomWord">indictment</span>
As you can see, the class is random word, I am trying to use the getElementsByClass method to get that element, as it is the only element on the page with the class of randomWord. I have also tried using doc.select("span[class$=randomWord]") That yielded the same result, nothing printing. Could anyone help me? Thanks.