在Android上通过Java获取html标签的文本

时间:2019-03-15 15:28:35

标签: java android html dom

例如,我有一个TextView:

    <TextView
    android:textSize="35dp"
    android:id="@+id/result"
    android:gravity="center"
    android:layout_width="match_parent"
    android:layout_height="100dp" />

,而我在www.example.com上有一个“ p”标签:

<p id='text'>...</p>

我想获取此“ p”标签的文本并将其放入TextView中,如何用Java做到这一点?

1 个答案:

答案 0 :(得分:0)

您可以使用Jsoup(https://jsoup.org/cookbook/extracting-data/attributes-text-html)来解析html标签。