将XML声明添加到XElement

时间:2017-10-24 16:52:45

标签: c# asp.net xml linq-to-xml

我使用XElement和XAttribute创建了一个大型XML文档。我是通过向元素添加属性并向元素添加元素来实现的。

像这样:

// root node: PhysicalProperty
XElement PhysicalProperty = new XElement("PhysicalProperty");

// PhysicalProperty child element: Management
XElement Management = new XElement("Management");
XAttribute ManagementOrganizationName = new XAttribute("OrganizationName", property.Company.Name);
XAttribute ManagementManagementID = new XAttribute("ManagementID", property.Company.CompanyID);
Management.Add(ManagementOrganizationName);
Management.Add(ManagementManagementID);
PhysicalProperty.Add(Management);

我的XML有很多元素。但是,我注意到它没有创建xml声明:

<?xml version="1.0" encoding="UTF-8"?>

看起来我应该创建一个XDocument。如何创建XDocument并将我的根元素(PhysicalProperty)添加到XDocument?有可能吗?

2 个答案:

答案 0 :(得分:0)

您需要将new XDeclaration(...)传递给XDocument构造函数,然后传递根元素。

答案 1 :(得分:0)

你必须从一个 XDocument 开始,它带有一个 utf-8 编码的默认声明成员。如果需要,您可以用这个的新实例替换声明。

var fi = new FileInfo(@"[MyFileName]");
var cultureName = "en-CA";
XDocument doc = XDocument.Load(fi.FullName, LoadOptions.PreserveWhitespace);
var language = doc.Descendants()
        .Where(t => t.Name.LocalName == "Language")
        .FirstOrDefault();

if (language != null && language.Value != cultureName)
{
    language.SetValue(cultureName);
    File.WriteAllText(fi.FullName
        , $"{doc.Declaration}{doc.ToString()}"
        , encoding: Encoding.UTF8);
}

您可以从文档中搜索、浏览或创建项目。 一旦您需要存储 XML 文档的内容及其声明,您可以在保存内容时简单地连接声明。文档内容已包含用于合并声明的换行符。