//建立乙個空的xml文件
xmldocument xmldoc = new
xmldocument();
//在xml文件最頭部加入xml的宣告段落
//<?xml version="1.0"?>
xmlnode xmlnode = xmldoc.createnode(xmlnodetype.xmldeclaration, "", ""
);
//增加注釋
xmlcomment xmlcomm = xmldoc.createcomment("
the comment...");
//在xml文件中加入乙個根元素
xmlelement xmlelem = xmldoc.createelement("", "
學生", ""
);
//增加屬性
xmlattribute xmlattr = xmldoc.createattribute("專業"
); xmlattr.value = "
計算機"
;
//增加子元素
xmlelement xmlelem2 = xmldoc.createelement("姓名"
); xmltext xmltext = xmldoc.createtextnode("
李天平"
); xmlelement xmlelem3 = xmldoc.createelement("性別"
); xmltext = xmldoc.createtextnode("男"
);
//儲存建立好的xml文件
try
catch
(exception ex)
結果:
<?xml version="1.0"
?>
<
學生 專業="計算機"
>
<
姓名》李天平
姓名》<
性別》男
性別》學生》
delphi中xmldocument物件使用方法
delphi 中的 xmldocument 類詳解 21 暫停 delphi 中的 xmldocument 類詳解 20 動態建立 xmldocument 物件 delphi 中的 xmldocument 類詳解 19 nodevalue 與 nodename 的讀寫區別 delphi 中的 xml...
xm學習筆記
1關於靜態網頁的製作 html主要負責頁面的結構 css頁面的美觀 js與使用者的互動 2html 有標籤體的標籤 沒有標籤的標籤 html的標籤是固定的。是由 w3c預先規定好的!3xml和html的簡單對比 xml 1 可以擴充套件的標記語言 2 可以自定義標籤 3 描述帶關係的資料,作為軟體的...
XMLDocument方式讀取XML檔案 樹結構
本筆記計畫總結xmldocument方式讀取xml檔案並與readxml 方式進行對比 功能需求 提供路線表,包含路線及路線內站台資訊。提供實際得到的路線及站台號資訊,核對該站台號是否在該路線中 以路線表為標準 需求分析 先用xmldocument讀取路線資訊,建立樹結構。用提供的路線迴圈對比樹結構...