我用htmlunit获取htmltable rows.But我无法将它们设置为mysql数据库。我的数据库有像htmltable一样的列。如何将当前行保存到我的数据库?有谁能够帮我? 这是我的代码:
final HtmlTable table = HtmlTable)currentPage.getByXPath("//table[@role='grid']").get(0);
int i = 0;
for(final HtmlTableRow row : table.getRows()){
System.out.println(row.asText());
rows[i] = row.toString();
i++;
}