<?xml version="1.0" encoding="utf-8"?>
<info>
<report id="1">
<book>
<title>A</title>
</book>
<author>
<name>xyz</name>
</author>
</report>
<report id="2">
<book>
<title>B</title>
</book>
<author>
<name>xyz</name>
</author>
</report>
<report id="3">
<book>
<title>C</title>
</book>
<author>
<name>xyz</name>
</author>
</report>
</info>
これは私のxmlであり、各レポートを取得してデータベース
に保存したいxmlファイルをdomにロードし、nodeValueを使用して値を取得できます。nodeValueを使用すると、AやXYZなどの値を取得できますが、値をフォーマットされたxml
<book>
<title>A</title>
</book>
<author>
<name>xyz</name>
</author>