我正在调用一个返回 xml 数据的 web 服务。现在当我收到 xml 数据时,它都被扭曲了。“<”、“>”和“'”等所有转义字符都转换为 html 格式
即≶ > 和“。
所以现在,解析器无法识别标签。
这是我对网络服务的回应
<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:GetCustomerInfoResponse xmlns:ns1="http://qa2.alliancetek.com/phpwebservice">
<return xsi:type="xsd:string">
<?xml version="1.0" encoding="utf-8"?><customer><id>1</id><customername>Hitesh</customername><phonenumber>98989898</phonenumber></customer>
</return>
</ns1:GetCustomerInfoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
返回标签之间的内容是xml数据。当我将 xml 数据复制到 NSMutableString 变量中并执行替换字符操作时,它也没有改变。