Ich schreibe UWP App für Windows 10 Mobile.Erstelle Datei und schreibe XML dort (C#)
Ich habe xml wie folgt aus:
XmlDocument doc = new XmlDocument();
XmlElement el = (XmlElement)doc.AppendChild(doc.CreateElement("Order"));
el.SetAttribute("CallConfirm", "1");
el.SetAttribute("PayMethod", "");
el.SetAttribute("QtyPerson", "");
el.SetAttribute("Type", "1");
el.SetAttribute("PayStateID", "0");
el.SetAttribute("Remark", "{StreetName} , ..");
el.SetAttribute("RemarkMoney", "0");
el.SetAttribute("TimePlan", "");
el.SetAttribute("Brand", "1");
el.SetAttribute("DiscountPercent", "0");
el.SetAttribute("BonusAmount", "0");
el.SetAttribute("Department", "");
XmlElement el2 = (XmlElement)el.AppendChild(doc.CreateElement("Customer"));
el2.SetAttribute("Login", "");
el2.SetAttribute("FIO", "{FIO}");
XmlElement el3 = (XmlElement)el.AppendChild(doc.CreateElement("Address"));
el3.SetAttribute("CityName", "");
el3.SetAttribute("StationName", "");
el3.SetAttribute("StreetName", "{StreetName}");
el3.SetAttribute("House", "{HouseName}");
el3.SetAttribute("Corpus", "");
el3.SetAttribute("Building", "");
el3.SetAttribute("Flat", "{FlatName}");
el3.SetAttribute("Porch", "");
el3.SetAttribute("Floor", "");
el3.SetAttribute("DoorCode", "");
XmlElement el4 = (XmlElement)el.AppendChild(doc.CreateElement("Phone"));
el4.SetAttribute("Code", "{Code}");
el4.SetAttribute("Number", "{Phone}");
XmlElement el5 = (XmlElement)el.AppendChild(doc.CreateElement("Products"));
Ich möchte .xml-Datei erstellen und diese XML zu schreiben.
versuche ich es wie diese doc.Save("data.xml");
zu speichern, aber diesen Fehler haben
Error CS1503 Argument 1: cannot convert from 'string' to 'System.IO.Stream' Murakami
Wie ich das machen kann?
Vielen Dank für Hilfe!
Haben Sie versucht, zu suchen, wie man ein 'XmlDocument' speichert? Sie würden viele Ergebnisse bekommen! –
Mögliches Duplikat von [So erstellen Sie XML-Dokumente mit XmlDocument?] (Http://stackoverflow.com/questions/11492705/how-to-create-xml-document-using-xmlocument) –
@CharlesMager ist eine Universal-App –