Document doc = Jsoup.parse(html); Elements tables = doc.select("table"); for (Element table : tables) { Elements trs = table.select("tr"); String[][] trtd ...
確定! 回上一頁