我剛剛使用此代碼從XML文件讀取XML數據。它成功從file.I讀取數據。我只是想知道如何從XML讀取SelectSingleNode數據數據集。如何從C#中的DATASET對象讀取xml數據
public DataSet ds =new DataSet();
public FileStream stream = null;
stream = new FileStream(schdlpath, FileMode.Open);
ds.ReadXml(stream);
//after this even if i delete the xml file it won't hamper the appliaction.
stream.Close();
//this way I can print all the data..
Console.WriteLine(ds.GetXml());
所有我想要的是讀取數據 這樣
public XmlDocument document = new XmlDocument();
XmlNode ht = document.DocumentElement.SelectSingleNode("/Schedule/AudioVedioPlayer/Height");
其實我想讀取XML數據,並將其存儲到一個變量。
thnx4 help,bt我可以從數據集中讀取數據... ?? – kaushik
編輯爲直接從DataSet中讀取。 –
THnxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ...剛剛應用於演示應用程序。正在添加到大one.wish我的運氣.... n也sorrry f我的thnx似乎對你來說很小......我真的意味着它的大方式。 – kaushik