使用按钮(GUI)运行Java程序

时间:2019-02-26 04:54:27

标签: java swing user-interface jsoup jxl

尽管进行了数小时的研究,但我整天都为此感到沮丧。下面是我程序的基本思想。它从链接中提取数据并将其放入电子表格中,一次可以运行几个小时。我的意图是使用进度条将其连接到GUI。我试图先有一个“上传”按钮,然后有一个“运行”按钮。

对于“运行”按钮,我不知道如何将按钮连接到运行以下程序的实例。

我尝试放

App obj= new App();
obj.main(null);

正在采取行动,没有任何运气。我收到以下错误:

Error:(31, 25) java: unreported exception java.lang.Exception; 
    must be caught or declared to be thrown

我现在知道我们不能完全调用主函数。但是在那种情况下,如何使我的程序与GUI一起使用?造成这种情况的主要原因是将来能够为其创建一个Webapp,以便我可以在任何地方访问它。

public class App {

private static final int[] URL_COLUMNS = { 0, 4, 9 }; // Columns A, E, J
public static void main(final String[] args) throws Exception {

    Workbook originalWorkbook = Workbook.getWorkbook(new File("C:/Users/Shadow/Desktop/original.xls"));
    WritableWorkbook workbook = Workbook.createWorkbook(new File("C:/Users/Shadow/Desktop/updated.xls"), originalWorkbook);
    originalWorkbook.close();
    WritableSheet sheet = workbook.getSheet(0);
    Cell cell;

    for (int i = 0; i < URL_COLUMNS.length; i++) {
        int currentRow = 1;
        while (!(cell = sheet.getCell(URL_COLUMNS[i], currentRow)).getType().equals(CellType.EMPTY)) {

            String url = cell.getContents();
            System.out.println("Checking URL: " + url);
            if (url.contains("scrapingsite1.com")) {
                String Price = ScrapingSite1(url);
                System.out.println("Scraping Site1's Price: " + Price);
                // save price into the next column
                Label cellWithPrice = new Label(URL_COLUMNS[i] + 1, currentRow, Price);
                sheet.addCell(cellWithPrice);
            }
            currentRow++;
        }
    }

    workbook.write();
    workbook.close();
}

private static String ScrapingSite1 (String url) throws IOException {
    Document doc = null;
    for (int i=1; i <= 6; i++) {
        try {
            doc = Jsoup.connect(url).userAgent("Mozilla/5.0").timeout(6000).validateTLSCertificates(false).get();
            break;
        } catch (IOException e) {
            System.out.println("Jsoup issue occurred " + i + " time(s).");
        }
    }
    if (doc == null){
        return null;
    }
    else{
        return doc.select("p.price").text();
    }
}
}

1 个答案:

答案 0 :(得分:1)

粗略的猜测是,编译器会提示您进行更改:

App obj= new App();
obj.main(null);

对于几种可能性之一,这种基于“必须被抓住”的可能性(try / catch):

try {
    App obj= new App();
    obj.main(null);
} catch(Exception e) {
    e.printStackTrace(); // good fall back if logging not implemented
}

编辑:有关更多信息,请参见Java教程的Exceptions lesson