XML
を初めて使用し、次のことを試しましたが、例外が発生します。誰かが私を助けることができますか?
例外はThis operation would create an incorrectly structured document
私のコード:
string strPath = Server.MapPath("sample.xml");
XDocument doc;
if (!System.IO.File.Exists(strPath))
{
doc = new XDocument(
new XElement("Employees",
new XElement("Employee",
new XAttribute("id", 1),
new XElement("EmpName", "XYZ"))),
new XElement("Departments",
new XElement("Department",
new XAttribute("id", 1),
new XElement("DeptName", "CS"))));
doc.Save(strPath);
}
Xmlドキュメントにはルート要素が1つだけ必要です。しかし、ルートレベルでDepartments
ノードとEmployees
ノードの両方を追加しようとしています。これを修正するには、ルートノードを追加します。
doc = new XDocument(
new XElement("RootName",
new XElement("Employees",
new XElement("Employee",
new XAttribute("id", 1),
new XElement("EmpName", "XYZ"))),
new XElement("Departments",
new XElement("Department",
new XAttribute("id", 1),
new XElement("DeptName", "CS"))))
);
ルート要素を追加する必要があります。
doc = new XDocument(new XElement("Document"));
doc.Root.Add(
new XElement("Employees",
new XElement("Employee",
new XAttribute("id", 1),
new XElement("EmpName", "XYZ")),
new XElement("Departments",
new XElement("Department",
new XAttribute("id", 1),
new XElement("DeptName", "CS")))));
私の場合、この例外をスローする複数のXElementをxDocumentに追加しようとしていました。私の問題を解決した私の正しいコードについては、以下を参照してください
string distributorInfo = string.Empty;
XDocument distributors = new XDocument();
XElement rootElement = new XElement("Distributors");
XElement distributor = null;
XAttribute id = null;
distributor = new XElement("Distributor");
id = new XAttribute("Id", "12345678");
distributor.Add(id);
rootElement.Add(distributor);
distributor = new XElement("Distributor");
id = new XAttribute("Id", "22222222");
distributor.Add(id);
rootElement.Add(distributor);
distributors.Add(rootElement);
distributorInfo = distributors.ToString();
私がdistributorInfoで取得するものについては、以下を参照してください
<Distributors>
<Distributor Id="12345678" />
<Distributor Id="22222222" />
</Distributors>