I m doing with SAX parsing for all my projects and it works nicely. But today I faced a problem while accessing the same SAX. Following is the part of the xml where am getting problem.
<customCssStyle label="css1" order="1" text=".test { background-color: yellow; } .link { background-color: red; }"/>
While parsing with SAX I can get the values of "label" and "order". but in case of "text" I am facing problem. This value comes in 2 strings. I think it's due to white space.
Am i right? Can SAX not recognize the white space? Should I use Pull parsing?