您好,登錄后才能下訂單哦!
這篇文章主要介紹使用XmlTextWriter生成XML文件的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
項目兼容需要生成一系列的xml文件,總結了下XML文件的生成基本方式
XmlTextWriter w = new XmlTextWriter("C:\XML文件名.xml", Encoding.Unicode); //Encoding.Unicode為生成XML文件的編碼格式,到時候合輸出:<?xml version="1.0" encoding="utf-16"?> w.Formatting = Formatting.Indented; // 這個比較重要,這個屬性說明xml文件里面的內容是按級別縮進的。 //下面開始生成文件的內容 w.WriteStartDocument(); //開始寫xml,在最后有一個與之匹配的w.WriteEndDocument(); w.WriteStartElement("SpotList"); w.WriteAttributeString("xmlns:xsi", "http:www.w3.org/2001/XMLSchema-instance"); //SpotList節點的屬性 w.WriteAttributeString("xmlns:xsd", "http:www.w3.org/2001/XMLSchema"); //SpotList節點屬性,最后效果:<SpotList xmlns:xsi="http:www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http:www.w3.org/2001/XMLSchema"> w.WriteStartElement("Items"); w.WriteElementString("Name", myPoints[j].Name); w.WriteElementString("Caption", myPoints[j].Caption); w.WriteElementString("Addr", myPoints[j].Addr); w.WriteElementString("Phone", myPoints[j].Phone); w.WriteStartElement("Intro"); //最后效果:<Intro><![CDATA[相關內容]]></Intro> w.WriteCData(myPoints[j].Intro); w.WriteEndElement(); w.WriteEndElement(); w.WriteEndElement(); w.WriteEndDocument(); w.Close(); //完成xml文件的輸出,關閉
以上是“使用XmlTextWriter生成XML文件的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。