我有一部分xml文件
<Text><?xml version="1.0" encoding="utf-16"?>
<ObjectFilter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FilterConditions>
<FilterCondition>
<PropertyFilters>
<PropertyFilter>
<PropertyName>Message</PropertyName>
<FilterValue xsi:type="xsd:string">PPM exceeds tolerance</FilterValue>
<FilterType>strExpr</FilterType>
<Operator>eq</Operator>
<CaseSensitive>true</CaseSensitive>
<Recursive>false</Recursive>
</PropertyFilter>
</PropertyFilters>
<Enabled>true</Enabled>
<ObjectTypeName>Spo.DataModel.UnixLogMessage</ObjectTypeName>
<ObjectClassGR>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
</ObjectClassGR>
这里的节点Recursive意味着什么,它实际上就像这个<Recursive>false</Recursive>
但是怎么样&amp; lt; Recursive&gt; false&amp; lt; / Recursive&gt; 任何人都可以帮助我这个
答案 0 :(得分:4)
你是如何获取这个XML文件的?来自网页?
您获取文本文件的方式似乎是将其翻译为HTML文档,从而转换为“&lt;”进入&amp; lt和你的'&gt;'进入&amp; gt
您需要确保页面不被解释为HTML。您可以先将所有内容复制粘贴到记事本中,以获得简单的解决方案。