xml 元素未正确缩进

发布于 2024-09-07 09:02:44 字数 91 浏览 2 评论 0原文

我已经使用 C# 创建了一个 xml 文件,但主要问题是它没有缩进

我使用了 xmldocument.preserverwhitespace=true;

i have created a xml file using c# but the main problem is that it is not indented

i have used xmldocument.preserverwhitespace=true;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

葮薆情 2024-09-14 09:02:44

如果您使用的是 XmlTextWriter,则可以设置 Formatting 属性:

XmlTextWriter xmlWriter = new XmlTextWriter("c:\ouputfile.xml", System.Text.Encoding.UTF8);
xmlWriter.Formatting = Formatting.Indented;

If you are using an XmlTextWriter, you can set the Formatting property :

XmlTextWriter xmlWriter = new XmlTextWriter("c:\ouputfile.xml", System.Text.Encoding.UTF8);
xmlWriter.Formatting = Formatting.Indented;
孤千羽 2024-09-14 09:02:44

强烈建议您切换到基于 XDocument 的新 XML 文档模型。您可以在其上使用 LINQ to XML,并且与旧的 XMLDocument 模型相比,创建、更改和搜索 XML 更加容易。新的 XDocument 模型可以将代码大小减少一半以上。

Strongly suggest you switch over to the new XML document model, based on XDocument. You can use LINQ to XML on it, and it's much easier to create, alter, and search XML than it ever wasin the old XMLDocument model. The new XDocument model can cut your code size by over half.

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