以下のXMLを解析しようとすると、このエラーが発生します。私はEclipseのAndroidを介してこれを行っています。
XMLException:SAXException:1行目0列目:整形式ではありません(無効なトークン)
<?php
header('Content-type: text/xml');
echo '<wardrobe>
<item id="1">
<path>images/pink.jpg</path>
<name>pink top</name>
<description>size 12 pink top</description>
<category>tops</category>
</item>
<item id="2">
<path>images/bluepants.jpg</path>
<name>blue trousers</name>
<description>size 10 light blue trousers</description>
<category>bottoms</category>
</item>
<item id="3">
<path>images/skirt.jpg</path>
<name>grey skirt</name>
<description>sze 10 grey skirt</description>
<category>bottoms</category>
</item>
<item id="4">
<path>images/runners.jpg</path>
<name>runners</name>
<description>exercise runners</description>
<category>shoes</category>
</item>
<item id="5">
<path>images/heels.jpg</path>
<name>black heels</name>
<description>dance shoes</description>
<category>shoes</category>
</item>
</wardrobe>';
?>
この無効なトークンが見つかりません。XMLはw3schoolsの例と同じように見えます: http ://www.w3schools.com/xml/xml_server.asp
誰かがこのトークンを見つけることができますか?
助けてくれてありがとう。