我從客戶端應用程序獲取xml流如何直接解析該流以及如何將其加載到數據集?如何使用c#讀取xml流?
[WebInvoke(UriTemplate = "UpdateFile/{id}", Method = "POST")]
public bool UpdateTestXMLFile(string id, Stream createdText)
{
string filenamewithpath = System.Web.HttpContext.Current.Server.MapPath(@"~/files/" + id+".xml");
System.IO.File.WriteAllBytes(filenamewithpath, Util.ReadFully(createdText));
}
請告訴我..
'myDataSet.ReadXml(yourPath);'你在問這個嗎? –