我从 Web 服务中获得了响应字符串,它是 XML 格式的大量二进制字符串。我可以将响应数据存储到对象中。但我想解析响应并将其存储到本地数据库中。所以我必须将对象数据转换为字符串。如果我将对象数据转换为字符串。它发生“内存问题”。
我的回应是这样的
<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>
..
..
..
高达50
</xmlstring>