保存时排除 xml 声明

发布于 2024-08-19 16:51:40 字数 171 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨小墨 2024-08-26 16:51:40

使用 XmlWriter 的保存方法 http://msdn.microsoft.com/en -us/library/bb336977.aspx,并使用 XmlWriterSettings http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.settings.aspx

XmlWriterSettings settings = new XmlWriterSettings();
settings.OmitXmlDeclaration = true;


XmlWriter writer = XmlWriter.Create(yourstream, settings);

yourXDocument.Save(writer);

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

XmlWriterSettings settings = new XmlWriterSettings();
settings.OmitXmlDeclaration = true;


XmlWriter writer = XmlWriter.Create(yourstream, settings);

yourXDocument.Save(writer);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文