Possible Duplicate:
OutOfMemoryError : When receiving XML response of 2.3 MB
I got the responds string from the web service which is the large amount of Binary string in XML format. I can able to store the respond data into the Object. but i want to parse the respond and store that into the local data base. so i have to convert the object data to String. If i convert the object data to string. It occurs "Memory issue".
my respond is like this
<xmlstring>
<oneslip>78364</oneslip>
<threeslip>Hello</threeslip>
<twoslip>3</twoslip>
<Binarydata>"Here the large amount of binary data"</Binarydata>
<oneslip>78364</oneslip>
<threeslip>Hello</threeslip>
<twoslip>3</twoslip>
<Binarydata>"Here the large amount of binary data"</Binarydata>
..
..
..
Upto 50
</xmlstring>