目的:XmlTextWriterでXMLファイルを作成し、XmlNode SelectSingleNode()、node.ChildNode [?]。InnerText = sometingなどで既存のコンテンツを変更/更新する予定です。
以下のようにXmlTextWriterでXMLファイルを作成した後。
XmlTextWriter textWriter = new XmlTextWriter("D:\\learning\\cs\\myTest.xml", System.Text.Encoding.UTF8);
以下のコードを練習しました。しかし、XMLファイルを保存できませんでした。
XmlDocument doc = new XmlDocument();
doc.Load("D:\\learning\\cs\\myTest.xml");
XmlNode root = doc.DocumentElement;
XmlNode myNode;
myNode= root.SelectSingleNode("descendant::books");
....
textWriter.Close();
doc.Save("D:\\learning\\cs\\myTest.xml");
私のやり方のように制作するのは良くないことがわかりました。それについて何か提案はありますか?同じプロジェクトでのXmlTextWriterとXmlNodeの両方の概念と使用法については明確ではありません。読んでいただきありがとうございます。
XMLでノードを更新する場合、XmlDocument
は問題ありません。XmlTextWriter
を使用する必要はありません。
XmlDocument doc = new XmlDocument();
doc.Load("D:\\build.xml");
XmlNode root = doc.DocumentElement;
XmlNode myNode = root.SelectSingleNode("descendant::books");
myNode.Value = "blabla";
doc.Save("D:\\build.xml");
フレームワーク3.5を使用している場合のLINQ to xmlの使用
using System.Xml.Linq;
XDocument xmlFile = XDocument.Load("books.xml");
var query = from c in xmlFile.Elements("catalog").Elements("book")
select c;
foreach (XElement book in query)
{
book.Attribute("attr1").Value = "MyNewValue";
}
xmlFile.Save("books.xml");
XmlTextWriter xmlw = new XmlTextWriter(@"C:\WINDOWS\Temp\exm.xml",System.Text.Encoding.UTF8);
xmlw.WriteStartDocument();
xmlw.WriteStartElement("examtimes");
xmlw.WriteStartElement("Starttime");
xmlw.WriteString(DateTime.Now.AddHours(0).ToString());
xmlw.WriteEndElement();
xmlw.WriteStartElement("Changetime");
xmlw.WriteString(DateTime.Now.AddHours(0).ToString());
xmlw.WriteEndElement();
xmlw.WriteStartElement("Endtime");
xmlw.WriteString(DateTime.Now.AddHours(1).ToString());
xmlw.WriteEndElement();
xmlw.WriteEndElement();
xmlw.WriteEndDocument();
xmlw.Close();
XmlDocument doc = new XmlDocument();
doc.Load(@"C:\WINDOWS\Temp\exm.xml");
XmlNode root = doc.DocumentElement["Starttime"];
root.FirstChild.InnerText = "First";
XmlNode root1 = doc.DocumentElement["Changetime"];
root1.FirstChild.InnerText = "Second";
doc.Save(@"C:\WINDOWS\Temp\exm.xml");
これを試して。 C#コードです。
XmlTextWriterは通常、XMLコンテンツの生成(更新ではない)に使用されます。 xmlファイルをXmlDocumentにロードする場合、別個のライターは必要ありません。
選択したノードを更新し、そのXmlDocumentを.Save()します。