tinyxml是一個C++跨平臺開源庫,XML文件切記不要使用Windows記事本打開編輯,最好使用Notepad++進行編輯打開
成都創(chuàng)新互聯(lián)公司是專業(yè)的新吳網(wǎng)站建設(shè)公司,新吳接單;提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行新吳網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
生成文本:
生成代碼
TiXmlElement *RootElement = NULL;
TiXmlDocument *pDoc = NULL;
pDoc = new TiXmlDocument();
TiXmlDeclaration *pDeclaration = new TiXmlDeclaration(("1.0"), ("UTF-8"), (""));
pDoc->LinkEndChild(pDeclaration);
RootElement = new TiXmlElement(("MyGUI"));
RootElement->SetAttribute("type", "Resource");
RootElement->SetAttribute("version", "1.1");
pDoc->LinkEndChild(RootElement);
pDoc->SaveFile("fengyuzaitu51cto.xml");
delete pDoc;
注意:
tinyxml:Could not load test file Error='Error reading Attributes.'. Exiting.描述:使用windows寫字板編輯任何的xml文件,保存成為純文本文件導(dǎo)致的問題,是下面屬性完全消失
Could not load test file 'test.xml'.Error='Error reading Attributes.'. Exiting.