<SQLDiary>
<Imformation title="更新" time="2013-11-6" info="备注说明" sql="select * FROM B_MS"/>
</SQLDiary>
我想要在<SQLDiary>的节点下循环写入
<Imformation title="更新" time="2013-11-6" info="备注说明" sql="select * FROM B_MS"/>这样类似的子节点,求详细方法
如何在XML文件的指定节点下写入值?
答案:1 悬赏:30 手机版
解决时间 2021-03-14 02:58
- 提问者网友:蓝琪梦莎
- 2021-03-13 21:05
最佳答案
- 五星知识达人网友:由着我着迷
- 2021-03-13 22:01
XmlDocument doc = new XmlDocument();
doc.LoadXml("<SQLDiary> <Imformation title=\"更新\" time=\"2013-11-6\" info=\"备注说明\" sql=\"select * FROM B_MS\"/></SQLDiary>");
XmlNode root = doc.DocumentElement;
//Create a new node.
XmlElement elem = doc.CreateElement("Imformation");
elem.InnerText = "title=\"更新\" time=\"2013-11-6\" info=\"备注说明\" sql=\"select * FROM B_MS";
//Add the node to the document.
root.AppendChild(elem);
Console.WriteLine("Display the modified XML...");
doc.Save(Console.Out);
Console.Read();
doc.LoadXml("<SQLDiary> <Imformation title=\"更新\" time=\"2013-11-6\" info=\"备注说明\" sql=\"select * FROM B_MS\"/></SQLDiary>");
XmlNode root = doc.DocumentElement;
//Create a new node.
XmlElement elem = doc.CreateElement("Imformation");
elem.InnerText = "title=\"更新\" time=\"2013-11-6\" info=\"备注说明\" sql=\"select * FROM B_MS";
//Add the node to the document.
root.AppendChild(elem);
Console.WriteLine("Display the modified XML...");
doc.Save(Console.Out);
Console.Read();
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯