gpt4 book ai didi

c# - 我如何在 C# 中检索 XML 实体值?

转载 作者:数据小太阳 更新时间:2023-10-29 02:32:02 25 4
gpt4 key购买 nike

我希望能够在 C#/.NET 4.0 应用程序中显示实体名称和值的列表。

我可以使用 XmlDocument.DocumentType.Entities 轻松检索实体名称,但是是否有检索这些实体值的好方法?

我注意到我可以使用 InnerText 检索纯文本实体的值,但这不适用于包含 XML 标记的实体。

求助于正则表达式的最佳方式是什么?

假设我有这样一个文档:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE document [
<!ENTITY test "<para>only a test</para>">
<!ENTITY wwwc "World Wide Web Corporation">
<!ENTITY copy "&#xA9;">
]>

<document>
<!-- The following image is the World Wide Web Corporation logo. -->
<graphics image="logo" alternative="&wwwc; Logo"/>
</document>

我想向用户显示一个列表,其中包含三个实体名称(test、wwwc 和 copy)及其值(名称后引号中的文本)。我没有考虑过实体嵌套在其他实体中的问题,所以我会对完全扩展实体值或显示文本如引号中的文本的解决方案感兴趣。

最佳答案

虽然这可能不是最优雅的解决方案,但我想出了一些似乎足以满足我的目的的方法。首先,我解析了原始文档并从该文档中检索了实体节点。然后我创建了一个小的内存中 XML 文档,我向其中添加了所有实体节点。接下来,我在临时 XML 中添加了对所有实体的实体引用。最后,我从所有引用中检索了 InnerXml。

下面是一些示例代码:

        // parse the original document and retrieve its entities
XmlDocument parsedXmlDocument = new XmlDocument();
XmlUrlResolver resolver = new XmlUrlResolver();
resolver.Credentials = CredentialCache.DefaultCredentials;
parsedXmlDocument.XmlResolver = resolver;
parsedXmlDocument.Load(path);

// create a temporary xml document with all the entities and add references to them
// the references can then be used to retrieve the value for each entity
XmlDocument entitiesXmlDocument = new XmlDocument();
XmlDeclaration dec = entitiesXmlDocument.CreateXmlDeclaration("1.0", null, null);
entitiesXmlDocument.AppendChild(dec);
XmlDocumentType newDocType = entitiesXmlDocument.CreateDocumentType(parsedXmlDocument.DocumentType.Name, parsedXmlDocument.DocumentType.PublicId, parsedXmlDocument.DocumentType.SystemId, parsedXmlDocument.DocumentType.InternalSubset);
entitiesXmlDocument.AppendChild(newDocType);
XmlElement root = entitiesXmlDocument.CreateElement("xmlEntitiesDoc");
entitiesXmlDocument.AppendChild(root);
XmlNamedNodeMap entitiesMap = entitiesXmlDocument.DocumentType.Entities;

// build a dictionary of entity names and values
Dictionary<string, string> entitiesDictionary = new Dictionary<string, string>();
for (int i = 0; i < entitiesMap.Count; i++)
{
XmlElement entityElement = entitiesXmlDocument.CreateElement(entitiesMap.Item(i).Name);
XmlEntityReference entityRefElement = entitiesXmlDocument.CreateEntityReference(entitiesMap.Item(i).Name);
entityElement.AppendChild(entityRefElement);
root.AppendChild(entityElement);
if (!string.IsNullOrEmpty(entityElement.ChildNodes[0].InnerXml))
{
// do not add parameter entities or invalid entities
// this can be determined by checking for an empty string
entitiesDictionary.Add(entitiesMap.Item(i).Name, entityElement.ChildNodes[0].InnerXml);
}
}

关于c# - 我如何在 C# 中检索 XML 实体值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7028620/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com