”<”和“>”变成“>”和“<” requestdump中,要传输xml格式参数时如何避免这种情况

发布于 2024-11-25 11:46:01 字数 1013 浏览 0 评论 0 原文

“<”和“>”变成“>”和“<”在requestdump中,当我要传输xml格式的参数时,如何避免这种情况?

请求转储:

<aaa i:type="d:string">
&lt;Detect&gt;&lt;Target Tar="bbb" Points="5"&gt;&lt;Point x="306"  
y="63"/&gt;&lt;Point x="399" y="63"/&gt;&lt;Point x="399" y="261"/&gt;&lt;Point x="306"  `y="261"/&gt;&lt;Point x="306" y="63"/&gt;&lt;/Target&gt;&lt;/Detect&gt;

y="261"/&gt;&lt;Point x="306" y="63"/&gt;&lt;/Target&gt;&lt;/Detect&gt;

服务器端要求的格式:

<aaa>
<Detect><Target Tar="bbb"><Point x="111" y="222"/><Point x="333" y="444" /><Point x="555" y="666"/></Target></Detect></aaa>

ps:

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

xml

"<" and ">" become ">" and "<" in requestdump ,How to avoid this situation when I want to transfer the xml format parameters?

requestdump:

<aaa i:type="d:string">
<Detect><Target Tar="bbb" Points="5"><Point x="306"  
y="63"/><Point x="399" y="63"/><Point x="399" y="261"/><Point x="306"  `y="261"/><Point x="306" y="63"/></Target></Detect>

y="261"/><Point x="306" y="63"/></Target></Detect>

The format of the server-side requirements:

<aaa>
<Detect><Target Tar="bbb"><Point x="111" y="222"/><Point x="333" y="444" /><Point x="555" y="666"/></Target></Detect></aaa>

ps:

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

xml

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是在用心讲痛 2024-12-02 11:46:01

试试这个,

Html.fromHtml(respons).toString();

Try this,

Html.fromHtml(respons).toString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文