xml create node (ルートノード、子ノード)
2022-01-19 13:27:25
コピーコード
コードは以下の通りです。
protected void Button1_Click(object sender, EventArgs e)//create xml
{
//Statement
XmlDocument x = new XmlDocument();
// Create
XmlDeclaration xd = x.CreateXmlDeclaration("1.0", "GB2312", null);
x.AppendChild(xd);
// Create the root node
XmlElement element = x.CreateElement("Books");
x.AppendChild(element);
//Add a child node of Books
XmlNode book = x.CreateElement("Book");
//add an element to Book
XmlElement bookname = x.CreateElement("bookname");
bookname.InnerText = "Three Kingdoms";
//add to nodes level by level
book.AppendChild(bookname);
element.AppendChild(book);
x.AppendChild(element);
// save the document (if it already exists, update it; if not, create it)
x.Save(@"F:/Books.xml");
}
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン