保存时排除 xml 声明
我正在使用 XDocument 生成 xml 文件。当我保存这个文件时,它会添加到
<?xml version="1.0" encoding="utf-8"?>
xml 的顶部。
我想在保存之前排除它,
我该怎么做。
i am generating an xml file using XDocument. when i save this file it adds
<?xml version="1.0" encoding="utf-8"?>
at the top of xml..
i want to exclude this before saving
how can i do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 XmlWriter 的保存方法 http://msdn.microsoft.com/en -us/library/bb336977.aspx,并使用 XmlWriterSettings http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.settings.aspx
Using the save method to a XmlWriter http://msdn.microsoft.com/en-us/library/bb336977.aspx, and creating this XmlWiter with XmlWriterSettings http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.settings.aspx