これは私の現在のコードです:
reader = new BufferedReader(new InputStreamReader(is));
String result = "";
while ((result = reader.readLine()) != null) {
System.out.println(result);
if (result.contains("<title>")) {
webtitle.setText(result.intern());
}
}
さて、私が現在 TextView で取得しているのは次のとおりです。
<title>This is the website's title</title>
私が欲しいのは:
This is the website's title
HtmlElement の InnerText と呼ばれるものを取得するには、何を変更する必要がありますか?