gpt4 book ai didi

C# XMLElement.OuterXML 在一行而不是格式

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

我正在尝试使用 log4net 记录来自 WCF 服务的一些 XML 响应。

我希望 XML 文件以正确格式的 XML 格式输出到日志。请求以 XMLElement 的形式出现。

例子:

请求是这样的:

<?xml version="1.0" encoding="utf-8"?>
<ApplicationEvent xmlns="http://courts.wa.gov/INH_TV/ApplicationEvent.xsd">
<Severity xmlns="">Information</Severity>
<Application xmlns="">Application1</Application>
<Category xmlns="">Timings</Category>
<EventID xmlns="">1000</EventID>
<DateTime xmlns="">2012-09-02T12:05:15.234Z</DateTime>
<MachineName xmlns="">Server1</MachineName>
<MessageID xmlns="">10000000-0000-0000-0000-000000000000</MessageID>
<Program xmlns="">Progam1</Program>
<Action xmlns="">Entry</Action>
<UserID xmlns="">User1</UserID>
</ApplicationEvent>

然后如果我把这个值输出到log4net。

logger.Info(request.OuterXml);

我将整个文档记录在一行中,如下所示:

<ApplicationEvent xmlns="http://courts.wa.gov/INH_TV/ApplicationEvent.xsd"><Severity xmlns="">Information</Severity><Application xmlns="">Application1</Application><Category xmlns="">Timings</Category><EventID xmlns="">1000</EventID><DateTime xmlns="">2012-09-02T12:05:15.234Z</DateTime><MachineName xmlns="">Server1</MachineName><MessageID xmlns="">10000000-0000-0000-0000-000000000000</MessageID><Program xmlns="">Progam1</Program><Action xmlns="">Entry</Action><UserID xmlns="">User1</UserID></ApplicationEvent>

我希望它以正确的格式显示在 log.txt 文件中。到目前为止,我发现这样做的唯一方法是将它转换为 XElement,如下所示:

XmlDocument logXML = new XmlDocument();
logXML.AppendChild(logXML.ImportNode(request, true));
XElement logMe = XElement.Parse(logXML.InnerXml);
logger.Info(logMe.ToString());

这对我来说似乎不是好的编程。我一直在搜索文档,但找不到不转换就可以正确输出的内置方法。

是否有一种明显的、更好的方法是我所缺少的?

edit1:删除了 ToString(),因为 OuterXML 是一个字符串值。

edit2:我回答了我自己的问题:

所以我做了更多的研究,我想我错过了文档中的一段代码。

http://msdn.microsoft.com/en-us/library/system.xml.xmlnode.outerxml.aspx

我把它归结为:

using (MemoryStream ms = new MemoryStream())
{
XmlWriterSettings xws = new XmlWriterSettings();
xws.Indent = true;
using (XmlWriter xmlWriter = XmlWriter.Create(ms, xws))
{
request.WriteTo(xmlWriter);
}
ms.Position = 0; StreamReader sr = new StreamReader(ms);
string s = sr.ReadToEnd(); // s will contain indented xml
logger.Info(s);
}

虽然比较冗长,但比我目前的方法更有效。

最佳答案

XElement 解析是最干净的方法。您可以使用以下方法保存一两行:

logger.Info(XElement.Parse(request.OuterXml).ToString()); 

关于C# XMLElement.OuterXML 在一行而不是格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7744320/

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