4

我很难解决 URL 中的与号 (&) 的这个小问题......我正在序列化 XML,如下所示......

    var ser = new XmlSerializer(typeof(response));
    using (var reader = XmlReader.Create(url))
    {
        response employeeResults = (response)ser.Deserialize(reader); //<<error when i pass with ampersand
    }

如果&url 中没有,上面的代码可以正常工作,否则会引发错误(见下文)

我序列化这个网址没有问题:

http://api.host.com/api/employees.xml/?&search=john

我有这个网址的问题:

http://api.host.com/api/employees.xml/?&max=20&page=10

我得到的错误是:

`There is an error in XML document (1, 389).`

PS:我确实尝试过传球&#038;,也尝试过&#38or #026or &amp;- 没有运气。

4

2 回答 2

5

此 XML 格式不正确:

<?xml version="1.0"?>
<response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api">
  <meta>
    <status>200</status>
    <message />
    <resultSet>
      <Checked>true</Checked>
    </resultSet>
    <pagination>
      <count>1</count>
      <page>1</page>
      <max>1</max>
      <curUri>http://api.host.com/employee.xml/?&max=5</curUri>
      <prevUri i:nil="true"/>
      <nextUri>http://api.host.com/employee.xml/?&max=5&page=2</nextUri>
    </pagination>
  </meta>
  <results i:type="ArrayOfemployeeItem">
    <empItem>
      <Id>CTR3242</Id>
      <name>john</name>
      ......
    </empItem>
  </results>
</response>

您必须转义&字符或将整个字符串放入CDATA,例如:

<?xml version="1.0"?>
<response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api">
  <meta>
    <status>200</status>
    <message />
    <resultSet>
      <Checked>true</Checked>
    </resultSet>
    <pagination>
      <count>1</count>
      <page>1</page>
      <max>1</max>
      <curUri><![CDATA[http://api.host.com/employee.xml/?&max=5]]></curUri>
      <prevUri i:nil="true"/>
      <nextUri><![CDATA[http://api.host.com/employee.xml/?&max=5&page=2]]></nextUri>
    </pagination>
  </meta>
  <results i:type="ArrayOfemployeeItem">
    <empItem>
      <Id>CTR3242</Id>
      <name>john</name>
      ......
    </empItem>
  </results>
</response>

如果您正在处理一些第三方系统并且无法获得正确的 XML 响应,则必须进行一些预处理。

也许最简单的方法就是&&amp;usingstring.Replace方法替换所有内容。

或者使用这个正则表达式&(?!amp;)替换所有&不包括正确的,比如&amp;.

于 2013-10-31T00:27:26.210 回答
1

您是否尝试过用 包装属性<![CDATA[yourAttribute]]> ?& 不允许在 xml 中

反序列化 xml-with-ampersand-using-xmlserializer

于 2013-10-31T00:15:30.277 回答