次のWebサービスから説明、ベンダー、価格を入手したいと思います。[リンク] http://sagt.vizushop.com/DefaultSimple.aspx?command=item_price&id=11
次のような応答
<item_details>
<description>
Jakl (Kumbuk) Center Table Timber : Mahogany/Rubber
</description>
<price>12600</price>
<vendor>BLUE</vendor>
</item_details>
次の例で試しましたが、機能しません-変数にnull値を与えます。
String vendor="";
String price="";
String description="";
try {
URL url = new URL("http://sagt.vizushop.com/DefaultSimple.aspx?command=item_price&id=11");
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new InputSource(url.openStream()));
doc.getDocumentElement().normalize();
NodeList nodeList = doc.getElementsByTagName("description");
//description=nodeList.item(0).getNodeValue();
Node node = nodeList.item(0);
description = node.getNodeValue();
Log.v(TAG, description);
}