簡體   English   中英

使用JSoup從HTML檢索數據

[英]Retrieve data from Html with 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

您可以像這樣編寫簡單的函數。

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中的鍵從地圖中檢索值。

謝謝。

也許這可行:

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM