我目前正在尝试从我的 webview 中的 html 内容导入选择性标题。我正在研究各种各样的选项,例如 json 解析或任何 hack 都可以。我想知道是否有人对此有过经验或对如何进行此操作有一个简短的想法?这是我的示例:这是我的 html 文件内容:
<div><h1><span class = "headline"> Some depressing title </span> <span class = "source" > ABCD </span> </h1> <br/> <span class = "body"> crappy body content which I do not need </span></div>
我只想在我的 webview 中从这个 html 中检索“标题”和“来源”,没有别的(不是正文)。我如何去定义一个参数来检索这些?关于如何做的任何线索?
谢谢!