"<p><img src="https://fashion-world.cn/mall/image/catalog/rea/176417753356354772.jpg"><img src="https://fashion-world.cn/mall/image/catalog/rea/360-300.png"></p><h1>我們是VR</h1>"
上面這段html字符串該如何解析啊,誰能寫個示例嗎????
使用靜態Jsoup.parse(String html) 方法或 Jsoup.parse(String html, String baseUri)示例代碼:
String html = "
First parse"Parsed HTML into a doc.
"; Document doc = Jsoup.parse(html);parse(String html, String baseUri) 這方法能夠將輸入的HTML解析為一個新的文檔 (Document),參數 baseUri 是用來將相對 URL 轉成絕對URL,並指定從哪個網站獲取文檔。如這個方法不適用,你可以使用 parse(String html) 方法來解析成HTML字符串如上面的示例。.
只要解析的不是空字符串,就能返回一個結構合理的文檔,其中包含(至少) 一個head和一個body元素。
一旦擁有了一個Document,你就可以使用Document中適當的方法或它父類 Element和Node中的方法來取得相關數據。