0

我目前正在从 HTML 页面中抓取一些分数,然后将它们输入到 SQL 数据库中。使用 Jsoup 将分数解析为 ArrayList。从这里我将 ArrayList 转换为 String 以允许将其解析为数据库中的 VARCHAR 字段。虽然我似乎无法弄清楚如何编辑 for 循环,但我必须一次插入所有值。

这是我当前的代码:

  Document doc = Jsoup.connect(URL).timeout(5000).get();

    for (Element table : doc.select("table:first-of-type")) //selects first table
    {
        for (Element row : table.select("tr:gt(0)")) { //selects first table cell
            Elements tds = row.select("td");//selects row

            List1.add(tds.get(0).text());
            List2.add(tds.get(1).text());
            List3.add(tds.get(2).text());
        }
    }
    PreparedStatement stmt = conn.prepareStatement("INSERT INTO Scores (Home, Score, Away) VALUES (?,?,?)");

    String[] List1str = new String[List1.size()];
    List1str = List1.toArray(List1str);

    for (String s : List1str) {
        stmt.setString(1, s);
        stmt.setString(2, "test");
        stmt.setString(3, "test");
        stmt.executeUpdate();

    }
4

1 回答 1

-1
for (int i = 0; i < dtm.getRowCount(); i++) {
    for (int j = 0; j < dtm.getColumnCount(); j++) {
        Object o = dtm.getValueAt(i, j);
        System.out.println("object from table is  : " + o);
        pst.setString(j + 1, (String) o);
    }
    pst.executeUpdate();
    pst.clearParameters();
}
于 2016-03-29T11:36:55.733 回答