Breaking up in String data while XML parsing in java?
- by Praveen Chandrasekaran
while xml parsing, i have a string value like this :
android & iphone
but my parsed value(output what i am getting) is just:
android
then i used the normalize method it comes :
android iphone
But i need a output like:
android & iphone
How to do that? Any Idea?