I have wrote a SAX parser. It works fine when the attibute values are nested in double quotes. But if i dont use quote it throws a exception. I want my parser to parse the XML file whose attributes values are not inside quotes. I want to parse following type of file:
<root>
<tag1 attribute1=value1 > my data </tag1>
</root>
Note that value1 is not inside quotes
Can i make my parser to parse the above file? If yes how?