Urgent help in parsing &

How do i handle in SAX parser &for example if my xml file look like this<book><title>xyz&abc</title></book>How would i get xyy&abc
[215 byte] By [rsg8] at [2007-9-26 2:40:08]
# 1
By doing this:<book><title>xyz&abc</title></book> Take a closer look at: http://www.w3.org/TR/REC-xml#syntaxGood luck.
lk555 at 2007-6-29 10:13:45 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
I tried<book><title>xyz&abc</title></book>but it returns abc, it ignores xyz any idea?
rsg8 at 2007-6-29 10:13:45 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3
what parser are you using ?I believe that parsers are not required to return element content in one chunk. You might end up getting three text nodes: xyz, &, and abc. - can you check on that ? If not, elaborate a bit on your environment like: what parser, SAX or DOM, etc.
lk555 at 2007-6-29 10:13:45 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...