私はこのようなXmlを持っています:
<root>
<item>
<content type="HTML">
<![CDATA[<html>
<head></head>
<body>something goes there</body>
</html>]]>
</content>
</item>
<item>
<content type="Text">
Something goes there
</content>
</item>
</root>
コンテンツがテキストタイプの場合、node.getTextContent()で取得できます。
問題は、XmlツリーからすべてのHtmlコンテンツを取得したいということです。したがって、取得したい結果は文字列です。
"<html><head></head><body>some thing goes there</body></html>"
Androidのドキュメント(DOM)でそれを行うにはどうすればよいですか?
注:一部のxmlコンテンツを編集する必要があるため、SAXを使用できません。