C XML讀寫步驟

2021-05-08 19:14:07 字數 946 閱讀 9211

xml實際就是乙個本地簡單的資料庫

我只做了乙個簡單的。。但是道理是一樣的。

//xml檔案資訊

1001

zhangsan男2

lisi

男//實體類。

public class information

set

}private string name;

public string name

set

}private string ***;

public string ***

set

}public information()

public information(string id,string name,string ***)

}//讀取xml裡面的檔案資訊

listlist = new list();

//例項化xml

xmldocument xml = new xmldocument();

//讀取xml檔案

xml.load(@"e:/c#/s2c#/dlcl/列印電腦/mycomputer/xuliehua/xml.xml");  //你的xml位址

string id = "";

string name = "";

string *** = "";

information info = null;

//*******下面開始迴圈讀取xml檔案資訊********/

///foreach (xmlnode node in xml.childnodes)

}info = new information(id, name, ***);

//將資訊儲存至集合

list.add(info);}}

}}xml裡面的所有資訊就是在list集合裡面了。。

可以做多個表和多個字段屬性。。

檔案讀寫步驟

system.io命名空間中的類為託管應用程式提供檔案以及其他形式的輸入輸出。託管i o的基本構件是流,而流是位元組導向的資料的抽象表示。流通過system.io.stream類表示.system.io.filestream允許將檔案作為流訪問 system.io.memorystream允許將記憶...

xml 讀寫查 基本步驟

saxreader reader new saxreader 獲得解析器 file f new file filename 指定解析檔案 構造文件樹並且返回 document document reader.read f 獲得根元素 element rootelement document.getr...

程式集 C Xml解析

題注 最近一直在搞xml,這次記錄下c 解析xml的過程,個人覺得相對tinyxml還是c 自帶的xmldocument更好用。ctrl shift n 建立乙個命令控制台專案 xmltest using system using system.collections.generic using s...