web-dev-qa-db-ja.com

java)でルートノード属性を取得する方法

以下のようなxmlファイルがあります。薬局ノードの緯度と経度の属性を取得したいのですが、chilnodes属性は取得できますが、rootノード属性を取得できませんでした。私はJavaとxmlを初めて使用します。解決策を見つけることができませんでした。

<pharmacies Acc="4" latitude="36.8673380" longitude="30.6346640" address="Ayujkila">
        <pharmacy name="sadde" owner="" address="dedes" distance="327.000555668" phone="342343" lat="36.8644" long="30.6345" accuracy="8"/>
        <pharmacy name="Sun " owner="" address="degerse" distance="364.450016586" phone="45623" lat="36.8641" long="30.6353" accuracy="8"/>
        <pharmacy name="lara" owner="" address="freacde" distance="927.262190129" phone="564667" lat="36.8731" long="30.6422" accuracy="8"
    <end/>
    </pharmacies>

これは私のコードの一部です。 URLアドレスからxmlファイルを取得します。

                    DocumentBuilderFactory dbf =DocumentBuilderFactory.newInstance();
                 DocumentBuilder db = dbf.newDocumentBuilder();
                 Document doc = db.parse(new InputSource(url.openStream()));
                 doc.getDocumentElement().normalize();
                    NodeList nodeList =doc.getElementsByTagName("pharmacy");
                 for (int i = 0; i < nodeList.getLength(); i++){
                      Node node =nodeList.item(i);
                      Element fstElmnt = (Element) node;
                      NodeList pharmacyList = fstElmnt.getElementsByTagName("pharmacy");
                      Element pharmacyElement = (Element) pharmacyList.item(0);
              Element pharmacyElement = (Element) pharmacyList.item(0);

              HashMap<String,String>map=new HashMap<String,String>();                   
              map.put("name", pharmacyElement.getAttribute("name"));
              map.put("distance", pharmacyElement.getAttribute("phone"));
              list.add(map);

              latt.add(pharmacyElement.getAttribute("lat"));

                    ....
13
jharry

<pharmacies>要素自体は次を使用して取得できます

Element pharmacies = doc.getDocumentElement();

そこから属性を取得できます。

27
skaffman

doc.getDocumentElement()はルート要素を返し、他の要素と同じようにgetAttribute( attrName )を呼び出すことができます。

6
biziclop

次のことを試してください。

    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse(new ByteArrayInputStream(xml.getBytes("UTF-8")));
    doc.getDocumentElement().normalize();
    System.out.println(doc.getChildNodes().getLength());
    Node item = doc.getChildNodes().item(0);
    System.out.println(item.getNodeName());
    Node lat = item.getAttributes().getNamedItem("latitude");
    String s = lat.getNodeValue();
    System.out.println(s.equals("36.8673380")); // Value of /pharmacies[@latitude]/value()
3

私にとっては、Resが最後の文字列です。

doc = b.parse(new ByteArrayInputStream(result.getBytes("UTF-8")));

    Node rootNode=doc.getDocumentElement();

    res = rootNode.getNodeName().toString();
0
user3153156

ルートノード薬局の属性を取得する必要がある場合は、薬局の代わりに薬局を使用する必要があります。代わりにgetAttributesメソッドを使用してください。このサイトで多くの例を見ることができます。 http://Java.Sun.com/developer/codesamples/xml.html#dom

0
UVM

_<pharmacies>_はそれ自体が要素であり、次を使用して取得できます。

Element pharmacies = doc.getDocumentElement();

これで、このpharmacies参照変数Elementsは、_<pharmacies>_要素の下のすべての属性を保持します。次のような属性名を使用して、目的の属性を1つずつ取得できます。

_pharmacies.getAttribute("latitude");   // Will give 36.8673380
pharmacies.getAttribute("longitude");  // Will give 30.6346640
_
0