1

我是使用 C# 处理 XML 文档的新手。

我的 C# 代码:

XmlNode root = xmlDoc.DocumentElement;
XmlElement childNode = xmlDoc.CreateElement("link:schemaRef");
root.AppendChild(childNode);

XmlAttribute type = xmlDoc.CreateAttribute("xlink:type");
type.Value = "simple";
childNode.Attributes.Append(type);

XmlAttribute type2 = xmlDoc.CreateAttribute("xlink:href");
type2.Value = "http://taxonomi.xbrl.se/se/fr/sme/rbf/2008-09-30/se-sme-rbf-2008-09-30.xsd";
childNode.Attributes.Append(type2);

但使用该代码将生成如下 XML:

<schemaRef type="simple" href="http://taxonomi.xbrl.se/se/fr/sme/rbf/2008-09-30/se-sme-rbf-2008-09-30.xsd" />

但是,我想要生成的 XML 元素如下所示:

<link:schemaRef xlink:type="simple" xlink:href="http://taxonomi.xbrl.se/se/fr/sme/rbf/2008-09-30/se-sme-rbf-2008-09-30.xsd" />

我想我已经找到了我的问题的解决方案,下面是我的 C# 代码,作为我的临时解决方案:

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(@"" + dir + "" + filename);

XmlNode root = xmlDoc.DocumentElement;

//##Insert XBRL link scheme
var schemaRefElement = xmlDoc.CreateElement("link", "schemaRef", "urn:linkbase");
schemaRefElement.SetAttribute("type", "http://www.w3.org/1999/xlink", "simple");
schemaRefElement.SetAttribute("href", "http://www.w3.org/1999/xlink","http://www.bi.go.id/xbrl/2012-06 18/view/Pelaporan%20Keuangan/Rincian%20aset%20non%20finansial/" + reportname + "/" + reportname + ".xsd");
root.AppendChild(schemaRefElement);
xmlDoc.Save(@"" + dir + "" + filename);

但我仍在寻找其他最佳解决方案;实际上我更喜欢使用 LINQ。

4

2 回答 2

0

这个例子可以帮助你

XNamespace aw = "http://www.adventure-works.com";
XElement xmlTree = new XElement(aw + "Root",
    new XAttribute(XNamespace.Xmlns + "aw", "http://www.adventure-works.com"),
    new XAttribute(aw + "Att", "attribute content")
);
XAttribute att = xmlTree.Attribute(aw + "Att");
Console.WriteLine(att);

输出:

aw:Att="属性内容"

于 2013-02-03T07:18:52.667 回答
0

尝试这个;

XmlDocument doc = new XmlDocument();
var mmd = doc.CreateElement("mmd");
var element = doc.CreateElement("link", "schemaRef", "http://www.xbrl.org/2003/linkbase");
            mmd.AppendChild(element);

XmlAttribute xmlAttribute = doc.CreateAttribute("xlink", "type", "http://www.w3.org/1999/xlink");
xmlAttribute.Value = "simple";
element.Attributes.Append(xmlAttribute);

xmlAttribute = doc.CreateAttribute("xlink", "href", "http://www.w3.org/1999/xlink");
xmlAttribute.Value = "http://taxonomi.xbrl.se/se/fr/sme/rbf/2008-09-30/se-sme-rbf-2008-09-30.xsd";
element.Attributes.Append(xmlAttribute);
于 2014-03-06T14:59:24.780 回答