2

これは私の XML です。

<Operations>
<Operation Name="OperationName1">Entity details1</Operation>
<Operation Name="OperationName2">Entity details2</Operation>
<Operation Name="OperationName3">Entity details3</Operation>
<Operation Name="OperationName4">Entity details4</Operation>
</Operations>

この場合、各子ノードを文字列変数として読み取る必要があります。DOMを使用して、私はこのようにしようとしています。

NodeList items = root.getElementsByTagName("Operation");

        for (int i=0;i<items.getLength();i++)
        {   
            Node item = items.item(i);

            NodeList properties = item.getChildNodes();

            for (int j=0;j<properties.getLength();j++){

                Node property = properties.item(j);

                    }               
         }

私の理解では、アイテムにはすべての子ノードがあり、このように各子ノードを保存する必要があります。

String ch_node="<Operation Name="OperationName4">Entity details4</Operation>"

子ノードxmlを提供するデフォルトの方法はありますか、またはノード名、値、および属性で再度作成する必要がありますか?

SAXパーサーも試しましたが、取得方法がわかりません。

public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {       
    if (qName.equalsIgnoreCase("operation")) {     
        op_Name=attributes.getValue(0);
    }
}

public void characters(char[] ch, int start, int length)
        throws SAXException {        
}

public void endElement(String uri, String localName, String qName)
        throws SAXException {       
}
4

3 に答える 3

0

これを試して

String elemName;

public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {       
   elemName=qName;
}

public void characters(char[] ch, int start, int length)
        throws SAXException {  
if(elemName.equals("OperationName1")) {
 String OperationName1Text=new String(ch);
}     
}

public void endElement(String uri, String localName, String qName)
        throws SAXException {       
}
于 2013-05-23T05:39:12.853 に答える
0

以下のコードを見てください。ここでは、子ノードの「説明」を取得しています。

URL url;

try {

    url = new URL(urls);
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    if ((conn.getResponseCode() == HttpURLConnection.HTTP_OK)) {
        DocumentBuilderFactory dbf = DocumentBuilderFactory
                .newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
        Document doc;
        doc = db.parse(url.openStream());
        doc.getDocumentElement().normalize();

        NodeList itemLst = doc.getElementsByTagName("item");
        nl = doc.getElementsByTagName(KEY_HEAD);

        Description = new String[itemLst.getLength()];// ........


        for (int i = 0; i < itemLst.getLength(); i++) {

            Node item = itemLst.item(i);
            if (item.getNodeType() == Node.ELEMENT_NODE) {
                Element ielem = (Element) item;

                NodeList description = ielem
                        .getElementsByTagName("description");

                Desc[i] = description.item(0).getChildNodes().item(0)
                        .getNodeValue();

            }

        }

    }
} catch (MalformedURLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (DOMException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (ParserConfigurationException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (SAXException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
于 2013-05-23T05:40:11.283 に答える