0
Androidのxmlの内部コンテンツを取得する方法は?事前Androidのxmlの内部コンテンツを取得する方法は?
で、私は次のコードを使用しているが、それは実際に結果を返さない場合例えば ...
String xml ="<hello><hai>welcome<hai></hello>";
InputStream is = new ByteArrayInputStream(xml.getBytes("UTF-8"));
DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
Document document = documentBuilder.parse(is);
String response = document.getElementsByTagName("hello");
私は「<海は>> <海を歓迎し、」結果を必要とする。..おかげで
例:http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html – Lumis