Log4Net & RollingFileAppender 生成 Xml 文件
我已成功使用 RollingFileAppender 配置 Log4Net 以生成 Xml 文件。
但是,在执行“滚动”之前,生成的文件不是有效的 XML 文件 - XML 没有结束 XML 标记。
基本上,这可以防止文件在“关闭”/“滚动”之前被读取。
还有其他人遇到过这个问题吗?
在我之前的(自定义)解决方案中,我必须在编写每个条目后编写结束标记,并用下一个条目覆盖它...:(
I've managed to configure Log4Net with a RollingFileAppender in order to generate Xml files.
However, the generated files are not valid XML files until a "roll" is performed - the XML doesn't have a closing XML tag.
Basically, this prevents to files from being read until that are "closed"/"rolled".
Anyone else encountered this issue?
I my previous (custom) solution I had to write the closing tag after writing each entry, and overwrite it with the next entry... :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 SAX 类型解析器读取该文件。这样,您应该能够使用它一直读取到文件末尾(如果您使用非验证解析器或将其设置为不验证文档)。如果您使用的是 .Net,请查看 XmlReader框架。
You could try reading the file with a SAX type parser. That way you should be able to read right up until the end of the file with it (if you use a non-validating parser or set it to not validate the document). Take a look at the XmlReader if you're using the .Net framework.