0

以下のように、この1行のxmlファイル(インデントと改行なし)があります

    <?xml version="1.0" encoding="UTF-8"?>
    <Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03 
camt.054.001.03.xsd">
    <BkToCstmrDbtCdtNtfctn><GrpHdr><MsgId>0000000006</MsgId>
<CreDtTm>2013-04-
    16T14:38:00</CreDtTm>
</GrpHdr>
</BkToCstmrDbtCdtNtfctn></Document>

このJava DOMパーサープログラムを使用して、値を解析および取得しています

import java.io.File;
import java.util.ArrayList;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;

public class GetNodeValues {
    static String value = null;
    static ArrayList alist = null;

    /****************** GET XPATH FOR EACH TAG **************************************/

    public static String getXPath(Element elemnt) {
        String xpath = null;
        String curNode = elemnt.getNodeName();
        ArrayList<String> al = new ArrayList<String>();
        al.add(curNode);
        // al.add(parNode);
        while (!elemnt.getParentNode().getNodeName().equals("#document")) {
            al.add(elemnt.getParentNode().getNodeName());
            elemnt = (Element) elemnt.getParentNode();
        }

        for (int i = al.size() - 1; i >= 0; i--) {
            xpath = xpath + "/" + al.get(i);
        }
        return xpath.replaceAll("null", "");
    }

    /******************************************************************************************/

    /**************************** GET TAG NAMES AND VALUES ***********************/

    public static ArrayList getValues() {
        try {

            alist = new ArrayList();
            String xmlFile = "C:/Users/Administrator/Desktop/sample2.xml";
            File file = new File(xmlFile);
            if (file.exists()) {

                // Create a factory
                DocumentBuilderFactory factory = DocumentBuilderFactory
                        .newInstance();
                // Use the factory to create a builder
                DocumentBuilder builder = factory.newDocumentBuilder();
                Document doc = builder.parse(xmlFile);

                doc.getDocumentElement().normalize();

                // Get a list of all elements in the document
                NodeList list = doc.getElementsByTagName("*");

                for (int i = 0; i < list.getLength(); i++) {
                    // Get element
                    Element element = (Element) list.item(i);
                    String nodnam = element.getNodeName();


                    if (element.getChildNodes().getLength() > 0) // then it has
                                                                    // text
                    {
                        String val = element.getChildNodes().item(0)
                                .getNodeValue();
                        if (val.startsWith("\n")) { // Discarding pseudo nodes

                        } else {
                            value = nodnam + " > " + val + " > "
                                    + getXPath(element); // print node names and
                                                            // values
                            System.out.println(value);
                            alist.add(value);
                        }
                    }
                }
            } else {
                System.out.print("File not found!");
            }
        } catch (Exception e) {
            System.exit(1);
        }

        return alist;
    }

    /********************************************************************************************/

    /************************** MAIN METHOD **********************************************/
    public static void main(String[] args) {
        System.out.println(getValues());

    }
}

そして、値を出力していません。ただし、xmlファイルを編集して、このようにインデントと新しい行を追加すると

<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:camt.054.001.03 camt.054.001.03.xsd">
    <BkToCstmrDbtCdtNtfctn>
        <GrpHdr>
            <MsgId>0000000006</MsgId>
            <CreDtTm>2013-04-16T14:38:00</CreDtTm>
        </GrpHdr>
    </BkToCstmrDbtCdtNtfctn>
</Document>

次に、以下のような出力が得られます

MsgId > 0000000006 > /Document/BkToCstmrDbtCdtNtfctn/GrpHdr/MsgId
CreDtTm > 2013-04-16T14:38:00 > /Document/BkToCstmrDbtCdtNtfctn/GrpHdr/CreDtTm

したがって、問題は、すべてのxmlファイルを編集できないことです。処理するファイルの数が膨大です。Java dom パーサーで何か不足していますか? 私が必要とするのは、プログラムがインデントと改行を持たないxmlファイルの値を解析して出力することだけです....

4

2 に答える 2

2

以下を実行することに注意してください。

} catch (Exception e) {
     System.exit(1);
}

例外を隠しており、実際の問題を見ることができません。少なくとも、次のようにスタック トレースを出力します。

} catch (Exception e) {
     e.printStackTrace();
     System.exit(1);
}

この場合、varfromString val = element.getChildNodes().item(0).getNodeValue();は null になる可能性があります。したがって、次の修正を使用すると、この問題が解決するはずです。

String val = element.getChildNodes().item(0).getNodeValue();
if (val != null) {
   if (val.startsWith("\n")) { // Discarding pseudo nodes
   } else {
       value = nodnam + " > " + val + " > "
            + getXPath(element); // print node names and
                                // values
       System.out.println(value);
       alist.add(value);
  }
}
于 2013-04-23T08:35:57.283 に答える