Jump to content

Get GE Price By Name


Recommended Posts

Posted (edited)

uses jsoup https://jsoup.org/download

 

private int lookupPrice(String name) {
    try {
        Document doc = Jsoup.connect("http://2007.runescape.wikia.com/wiki/Exchange:" + name.replaceAll(" ", "_")).get();
        Element price = doc.getElementById("GEPrice");
        return Integer.parseInt(price.text());
    } catch (Exception e) {}
    return 0;
}
Edited by BurritoBug
  • Like 3

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...