我有3个实体作为目标。任务和提醒。对于每个实体,我有单独的数据表。现在我想生成如下的xml
<PDPData>
<Goal>
<TypeId>300</TypeId>
<NAME>Smart Goal #</NAME>
<Task>
<TypeId>11</TypeId>
<NAME>Task1</NAME>
</Task>
<Task>
<TypeId>12</TypeId>
<NAME>Task2</NAME>
</Task>
<Reminder>
<TypeId>11</TypeId>
<NAME>Reminder1</NAME>
</Reminder>
<Reminder>
<TypeId>12</TypeId>
<NAME>Reminder2</NAME>
</Reminder>
</Goal>
</PDPData>
我怎样才能实现这一目标。我尝试使用下面的代码,但它只附加一个孩子,但我想在目标
中追加XmlElement hedder = docConfig.CreateElement("Goal");
docConfig.DocumentElement.PrependChild(hedder);
docConfig.ChildNodes.Item(0).AppendChild(hedder);
// Create <installationid> Node
XmlElement installationElement = docConfig.CreateElement("TypeId");
XmlText installationIdText = docConfig.CreateTextNode(dtGoals.Rows[goalCount]["TypeId"].ToString());
installationElement.AppendChild(installationIdText);
hedder.AppendChild(installationElement);
// Create <environment> Node
XmlElement environmentElement = docConfig.CreateElement("NAME");
XmlText environText = docConfig.CreateTextNode(dtGoals.Rows[goalCount]["Name"].ToString());
environmentElement.AppendChild(environText);
hedder.AppendChild(environmentElement);
答案 0 :(得分:0)
[Serializable()] //Set this attribute to all the classes that want to serialize
public class Employee : ISerializable
{
public int EmpId;
public string EmpName;
//Default constructor
public Employee()
{
EmpId = 0;
EmpName = null;
}
}
XmlSerializer serializer = new XmlSerializer(typeof(Employee));
TextWriter writer = new StreamWriter(filename);
Employee objEmp = new Employee();
serializer.Serialize(writer, objEmp);
writer.Close();
答案 1 :(得分:-2)
using System;
public class clsPerson {
public string FirstName;
public string MI;
public string LastName;
}
class class1 {
static void Main(string[] args)
{ clsPerson p=new clsPerson(); p.FirstName = "Jeff"; p.MI = "A"; p.LastName = "Price"; System.Xml.Serialization.XmlSerializer x = new System.Xml.Serialization.XmlSerializer(p.GetType()); x.Serialize(Console.Out, p); Console.WriteLine();
Console.ReadLine(); } }
对于通过手机发布的格式感到抱歉。