#include "nmXmlUtils.h" bool nmXmlUtils::loadNmXmlDatas(vecNmXmlDatas* pVecNmXmlDatas, \ QString sFile) { if (NULL == pVecNmXmlDatas) { return false; } // 加载 QDomDocument doc; if (!openAndLoadXml(doc, sFile, true)) //第三个参数:加密模式 { return false; } // 具体的解析 QDomElement root = doc.documentElement(); QDomNodeList listNodes = root.childNodes(); pVecNmXmlDatas->clear(); for (int i = 0; i < listNodes.count(); i++) { QDomNode node = listNodes.at(i); QDomElement e = node.toElement(); nmXmlData* p = new nmXmlData(); Q_ASSERT (NULL != p); p->parseInfo(e); pVecNmXmlDatas->append(p); } return (pVecNmXmlDatas->count() > 0); }