-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp~
83 lines (69 loc) · 2.15 KB
/
main.cpp~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include "tinystr.h"
#include "tinyxml.h"
#include "string"
#include <map>
#include <iostream>
#include <direct.h>
#include <stdio.h>
using namespace std;
//定义的缓冲区
char buffer[MAX_PATH];
//存放配置文件的参数名和参数值的映射关系。
map<string,string> parameter;
void readXml(string filename)
{
//获取当前的工作目录
getcwd(buffer, MAX_PATH);
string seperator = "\\";
string fullPath = buffer+seperator+filename;
//判断文件是否存在
if(access(fullPath.c_str(),0)==-1)
{
//文件不存在,下面直接略过
cerr<<"配置文件"+fullPath+"不存在"<<endl;
return;
}
//读取配置文件xml
TiXmlDocument doc(fullPath.c_str());
bool loadOk = doc.LoadFile();
if (!loadOk)
{
cout << "could load:" << doc.ErrorDesc() << endl;
}
//输出整个配置文件的内容
TiXmlPrinter printer;//提供的工具类,目的是将xml的数据按格式输出
doc.Accept(&printer);
cout << printer.CStr() << endl;//输出
//获得根元素<Configuration>
TiXmlElement* rootElement =doc.RootElement();
//循环处理<property>节点
TiXmlElement* nextElement=rootElement->FirstChildElement();
while(nextElement!=NULL)
{
//获取其中<name>节点
TiXmlElement* nameElement=nextElement->FirstChildElement();
//获取其中<value>节点
TiXmlElement* valueElement=nameElement->NextSiblingElement();
//获取上述节点的值
//cout<<nextElement->Value()<<endl;
// cout<<nameElement->FirstChild()->Value()<<endl;
parameter[nameElement->FirstChild()->Value()]=valueElement->FirstChild()->Value();
//cout<<valueElement->FirstChild()->Value()<<endl;
nextElement=nextElement->NextSiblingElement();
}
//循环遍历parameter中的参数,进行输出
map<string, string>::iterator iter;
for(iter = parameter.begin(); iter != parameter.end(); iter++)
{
cout<<iter->first<<" "<<iter->second<<endl;
}
}
int main(int argc, char *argv[])
{
//读取默认的配置文件gis-default.xml
readXml("conf\\gis-default.xml");
cout<<endl;
//读取自定义的配置文件gis-site.xml
readXml("conf\\gis-site.xml");
return 0;
}