大家好:)我开发导出.xml
文件(Android维度文件)的程序。我的计划将导出dimens_ldpi.xml
,dimens_mdpi.xml
,dimens_hdpi.xml
和dimens_xhdpi.xml
。很容易说,我想导出相同结构的多个文件。但我不知道如何将多个文件导出为简单。
目前我的来源是这样的:
//xml type declaration
TiXmlDocument ldpi_doc, mdpi_doc, hdpi_doc, xhdpi_doc;
TiXmlDeclaration* ldpi_pDec1 = new TiXmlDeclaration("1.0", "utf-8", "");
TiXmlDeclaration* mdpi_pDec1 = new TiXmlDeclaration("1.0", "utf-8", "");
TiXmlDeclaration* hdpi_pDec1 = new TiXmlDeclaration("1.0", "utf-8", "");
TiXmlDeclaration* xhdpi_pDec1 = new TiXmlDeclaration("1.0", "utf-8", "");
ldpi_doc.LinkEndChild(ldpi_pDec1);
mdpi_doc.LinkEndChild(mdpi_pDec1);
hdpi_doc.LinkEndChild(hdpi_pDec1);
xhdpi_doc.LinkEndChild(xhdpi_pDec1);
//Root add node
TiXmlElement* ldpi_pRoot = new TiXmlElement("resources");
TiXmlElement* mdpi_pRoot = new TiXmlElement("resources");
TiXmlElement* hdpi_pRoot = new TiXmlElement("resources");
TiXmlElement* xhdpi_pRoot = new TiXmlElement("resources");
ldpi_doc.LinkEndChild(ldpi_pRoot);
mdpi_doc.LinkEndChild(mdpi_pRoot);
hdpi_doc.LinkEndChild(hdpi_pRoot);
xhdpi_doc.LinkEndChild(xhdpi_pRoot);
//Add sub node
TiXmlElement* ldpi_pElem;
TiXmlElement* mdpi_pElem;
TiXmlElement* hdpi_pElem;
TiXmlElement* xhdpi_pElem;
[ SKIP ]
正如您所看到的,这是非常难编码的,我不想进行硬编码。这有什么办法可以导出到多个文件?在此先感谢:)
答案 0 :(得分:0)
我尝试搜索,但tinyXml
不支持多次导出..所以我用数组解决了它。 (我不满意,但比原来更好)
我的代码:
#define RESOLUTION_TYPE 4
#define ENCODING new TiXmlDeclaration("1.0", "utf-8", "") //encoding
#define FIRST_NODE new TiXmlElement("resources") //first common node
//xml type declaration
TiXmlDocument doc[RESOLUTION_TYPE];
TiXmlDeclaration* dec[RESOLUTION_TYPE] = { ENCODING, ENCODING, ENCODING, ENCODING };
for (int i = 0; i < RESOLUTION_TYPE; i++){
doc[i].LinkEndChild(dec[i]);
}
//Root add node
TiXmlElement* pRoot[RESOLUTION_TYPE] = { FIRST_NODE, FIRST_NODE, FIRST_NODE, FIRST_NODE };
for (int i = 0; i < RESOLUTION_TYPE; i++) {
doc[i].LinkEndChild(pRoot[i]);
}
//Add sub node
TiXmlElement* pElement[RESOLUTION_TYPE];
这比硬编码要好,但我希望更好的方法是在某个地方。