original xml file:
<root> <article>
<artists><artist role="A&R Staff" id="1">Vance</artist><artists></article>
</root>
Stax パーサーを使用してファイルを読み取り、それを新しいファイルに書き込むと、新しいファイルに & がないため、無効な xml ファイルが作成されます。
original xml file:
<root> <article>
<artists><artist role="A&R Staff" id="1">Vance</artist><artists></article>
</root>
Stax パーサーを使用してファイルを読み取り、それを新しいファイルに書き込むと、新しいファイルに & がないため、無効な xml ファイルが作成されます。
以下は私のために働いています:
// This can be any InputStream
InputStream is;
XMLInputFactory factory = XMLInputFactory.newInstance();
// Set this property to handle special HTML characters like & etc.
factory.setProperty(XMLInputFactory.IS_COALESCING, true);
// Now use the factory to get the EventReader from the InputStream
XMLEventReader eventReader = factory.createXMLEventReader(is);