使用JSoup从Html中检索数据

时间:2018-02-07 14:35:50

标签: java html jsoup

我试图从网站上检索信息,但问题是类名是相同的。 这是网站结构。

<tr class="main_el">
<td class="key">KEY1</td>
<td class="val">VALUE1</td>
</tr>

<tr class="main_el">
<td class="key">KEY2</td>
<td class="val">VALUE2</td>
</tr>
...
<tr class="main_el">
<td class="key">KEY3</td>
<td class="val">VALUE3</td>
</tr>

我无法使用此.get(i).getElementsByClass();,因为每个页面的索引都不同。请帮忙!

修改 我想使用KEY1仅检索VALUE1并独立于其他VALUES。

注意 VALUE1可能位于索引1或9

2 个答案:

答案 0 :(得分:2)

你可以编写这样的简单函数。

public Map<String, String> parseHtml(String inputHtml) {
    Document.OutputSettings outputSettings = new Document.OutputSettings();
    outputSettings.syntax(Document.OutputSettings.Syntax.html);
    outputSettings.prettyPrint(false);

    Document htmlDoc = Jsoup.parse(inputHtml);

    //Creating map to save td <key,value>

    Map<String, String> textMap = new HashMap<>();

    Elements trElements = htmlDoc.select("tr.main_el");

    if (trElements.size() > 0) {

        for (Element trElement : trElements) {
            String key = null;
            String value = null;

            for (Element tdElement : trElement.children()) {
                if (tdElement.hasClass("key"))
                    key = tdElement.text();
                if (tdElement.hasClass("value"))
                    value = tdElement.text();
            }

            if (key != null && value != null)
                textMap.put(key, value);
        }


    }
    return textMap;
}

然后,您可以通过html中的键从地图中检索值。

感谢。

答案 1 :(得分:1)

也许这有效:

select all <tr> elements
for each <tr>
  select <td> with class "key" from the <tr>
  if value of this element == "KEY1" then
    select <td> with class "key" from <tr>
    do whatever you want with this value