Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;

public class Main {

    public static void main(String[] args) throws Exception {
        String URL = "http://www.your server.com";
        Document doc = Jsoup.connect(URL).get();

        String cheapest = doc.select("b.item-price").first().text();
        System.out.println(cheapest);

    }
}