I am trying to parse and detect the start of the CDATA within a tag like:
<child><![CDATA[data goes here]]></child>
I have a class that extends the Default handler
class MyXmlDoc extends DefaultHandler{
with methods for startElement()
and endElement()
that fire correctly but the startCDATA()
never fires. My characters()
method picks up the 'data goes here' so it appears that the CDATA 'wrapper' is detected but ???
Thanks for any insight!