i have the following xml document:
consider the following xml file:
<?xml version="1.0"?>
<attribute>
<other1> > </other1>
<other2> < </other2>
<other3> & </other3>
</attribute>
i'm using jaxp to parse the document. i encountered the following errors when parsing the document:
C:\DOMEcho>
java -classpath '.\;C:\DOMEcho;C:\lib\crimson.jar;C:\lib\jaxp.jar;C:\
lib\xalan.jar;.' DOMEcho attribute.xml
Fatal Error: URI=file:C:/DOMEcho/attribute.xml Line=4: The content beginning "<
" is not legal markup. Perhaps the " " (
character should be a letter.
my investigation reveals that the character say '>' (within <other1> > </other1>
in invalid. any ideas of solving this? note that i cannot change '>' to its corresponding iso characters (xml document is generated by velocity- publishing framework).
any ideas in solving this so that i can parse my documents successfully. i have tried reading in the entire xml
string and convert the illegal characters to its equivalent but it don't work. will appreciate if someone can suggest a solution (or even donate some codes for me).