我是新來的java。 我有一個字符串s:使用Jsoup解析
s="<name>header</name><content>Good Morning</content>"
如何獲得使用Jsoup內容和名稱的價值? 什麼JSoup在內容爲空時返回?null?
我是新來的java。 我有一個字符串s:使用Jsoup解析
s="<name>header</name><content>Good Morning</content>"
如何獲得使用Jsoup內容和名稱的價值? 什麼JSoup在內容爲空時返回?null?
使用此RegEx例如:name=(.*) content=(.*) \/>
。該名稱將在第一組中,而第二組中的內容。
我會推薦圍繞字符串的雙引號。在這種情況下,你可以使用這個表達式:name=\"(.*)\" content=\"(.*)\"
的有機磷農藥編輯後,編輯:
如果你有,你應該考慮在你的數據庫中單獨列保存名稱和內容的數據了自己的完全控制,或者看看序列化。
您可以使用jsoup:
Connection con2=Jsoup.connect(url);
Document doc = con2.get();
//or use Document doc = Jsoup.parse(html);
Element e=doc.head().select("meta[name=header]").first();
String url=e.attr("content");
http://jsoup.org/cookbook/extracting-data/attributes-text-html
http://jsoup.org/cookbook/extracting-data/selector-syntax
爲您的編輯我的答案是@Hein給你的看法。
你有沒有嘗試過的東西.. – Shashi
請發表您嘗試 – Shashi
這種企圖在一個問題是沒有意義的 –