【发布时间】:2014-01-30 14:05:23
【问题描述】:
我想从 URL 中获取文本到我的 Android 字符串中。
网站:
<html>
<body>
Text I don't want to get.
<div id="editorText" class="answer" itemprop="text">Text I want to get</div>
</body>
Text I don't want to get.
<html>
安卓: 我希望结果是这样的:
String text = "Text I want to get";
【问题讨论】: