请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
读取和设置xml配置文件是最常用的操作,试用了几个C++的XML解析器,个人感觉TinyXML是使用起来最舒服的,因为它的API接口和Java的十分类似,面向对象性很好。 TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译。这个解析库的模型通过解析XML文件,然后在内存中生成DOM模型,从而让我们很方便的遍历这棵XML树。 DOM模型即文档对象模型,是将整个文档分成多个元素(如书、章、节、段等),并利用树型结构表示这些元素之间的顺序关系以及嵌套包含关系。 如下是一个XML片段:
/ ~$ V! I6 p: W9 Q7 a& [' A0 u; ^ <Persons>' `8 x" ^: O% k
<Person ID="1">
( v, d) j, D, ~" D <name>周星星</name>* S$ d6 D8 g. w3 x, ~" c
<age>20</age>6 G. D: `5 E4 K. w, n
</Person>- N& }$ M2 y7 \5 g( L) b
<Person ID="2">
6 m0 l |" P3 Z2 U% S3 g( E <name>白晶晶</name>
1 q* [# O: D5 m4 h <age>18</age>
7 B; ^5 J$ e* p0 P, F& H </Person>; y+ W3 u) h6 `
</Persons>
- h! M0 N. u+ S/ z2 T5 W
1 b) E; t+ v" r 在TinyXML中,根据XML的各种元素来定义了一些类: TiXmlBase:整个TinyXML模型的基类。 TiXmlAttribute:对应于XML中的元素的属性。 TiXmlNode:对应于DOM结构中的节点。 TiXmlComment:对应于XML中的注释 TiXmlDeclaration:对应于XML中的申明部分,即<?versiong="1.0" ?>。 TiXmlDocument:对应于XML的整个文档。 TiXmlElement:对应于XML的元素。 TiXmlText:对应于XML的文字部分 TiXmlUnknown:对应于XML的未知部分。 TiXmlHandler:定义了针对XML的一些操作。 TinyXML是个解析库,主要由DOM模型类(TiXmlBase、TiXmlNode、TiXmlAttribute、TiXmlComment、TiXmlDeclaration、TiXmlElement、TiXmlText、TiXmlUnknown)和操作类(TiXmlHandler)构成。它由两个头文件(.h文件)和四个CPP文件(.cpp文件)构成,用的时候,只要将(tinyxml.h、tinystr.h、tinystr.cpp、tinyxml.cpp、tinyxmlerror.cpp、tinyxmlparser.cpp)导入工程就可以用它的东西了。如果需要,可以将它做成自己的DLL来调用。举个例子就可以说明一切。。。 对应的XML文件:
5 n/ ?- k9 C* ]3 T9 M<Persons>, o: q' l6 K% j& M5 u& g4 A
<Person ID="1">
5 b* O% C+ S6 F6 O <name>phinecos</name>4 \ e* p8 R7 d' j B0 f5 z) R
<age>22</age>
9 h8 c& d D2 y! A </Person>* G# ?. {4 k4 U; V; ~$ r
</Persons>
Z+ G- s" q( |" N) Q7 l/ ?/ Q7 l# ^8 j, R
读写XML文件的程序代码:) g9 J5 _$ b; e4 a0 j/ J4 Q3 ?8 e
#include <iostream>9 s7 S. ?7 H0 Y% r9 w: V% x+ b8 C: w
#include "tinyxml.h"
6 i( ~4 w& X& a% H, L7 K#include "tinystr.h"0 H4 b: F, A9 I( `$ ~. b: R6 r/ h
#include <string>' Y0 V" \/ V2 `3 `' D
#include <windows.h>
! y+ Y% `5 {: q#include <atlstr.h>
& S6 I2 H0 u$ J: l5 v7 X( Nusing namespace std;& n( u/ x. d, b+ j" j. o3 y
' [% T* G! i. }% v# ]CString GetAppPath()
9 U7 ^7 K+ r: N- C{//获取应用程序根目录
$ m4 ?* m1 }3 I4 O) p TCHAR modulePath[MAX_PATH];
' {' u' X. l8 A/ T GetModuleFileName(NULL, modulePath, MAX_PATH);
! y ~! @/ a9 X$ E2 r* o2 w) z( b CString strModulePath(modulePath);/ b8 K8 t$ I8 x0 K0 z& C6 M) a+ }* C
strModulePath = strModulePath.Left(strModulePath.ReverseFind(_T('\\')));& P0 y( C! i0 @
return strModulePath;" n% }5 k+ Q6 `
}' O; Q/ A3 W7 ]1 `' E2 t% P
9 H: H) w; V" e, f+ `
bool CreateXmlFile(string& szFileName)
' Y: r, D4 A5 L* X{//创建xml文件,szFilePath为文件保存的路径,若创建成功返回true,否则false
% H, b: i+ K# ]) L! Z2 ?- m try8 Z( j6 C! Z2 ]
{; `: D7 {/ C5 v
//创建一个XML的文档对象。& k- w0 j6 d' @- e" R5 X" { d
TiXmlDocument *myDocument = new TiXmlDocument();
' t% C h0 a$ T4 o) Z //创建一个根元素并连接。
7 \ N; X8 f# b9 ^ TiXmlElement *RootElement = new TiXmlElement("Persons");
" ?0 Y# h$ y n' ^ myDocument->LinkEndChild(RootElement);
/ _* S% a3 H- B# X5 O$ E5 h6 n //创建一个Person元素并连接。
* u6 d' m& C& D/ Z6 G4 D TiXmlElement *PersonElement = new TiXmlElement("Person");
/ ^$ \8 h3 `; e; c% H7 Q6 Q( c" J RootElement->LinkEndChild(PersonElement);$ m: z- W7 g2 E) b9 u6 l5 A: j& g7 U
//设置Person元素的属性。
: f$ U8 r, P% v: U PersonElement->SetAttribute("ID", "1");
4 ~# }) n! P! N% F1 H6 s# C //创建name元素、age元素并连接。
! i' i4 a# E0 X* @( b- n% ~ TiXmlElement *NameElement = new TiXmlElement("name");0 ]5 h- e' p: }% W- U
TiXmlElement *AgeElement = new TiXmlElement("age");; ~) t; Y. h: F- d
, R, R9 C& _* W# P7 B6 x. \$ k6 y7 b7 w
登录/注册后可看大图 PersonElement->LinkEndChild(NameElement);6 Q' s: d- r7 R) ]1 J& B& N
PersonElement->LinkEndChild(AgeElement);
5 d& D! A1 _: B' t( M" D //设置name元素和age元素的内容并连接。& w+ j, K1 W3 K; Q5 }) y
TiXmlText *NameContent = new TiXmlText("周星星");
. E. P4 n" K/ S7 ? TiXmlText *AgeContent = new TiXmlText("22");
5 D$ b1 S+ v% V0 w- S NameElement->LinkEndChild(NameContent);* B0 g; V+ f, P, z8 ]; @4 E* I
AgeElement->LinkEndChild(AgeContent);
- I; b X" r- {7 { CString appPath = GetAppPath();
" |2 m5 t8 d9 s+ {$ b- p6 S string seperator = "\\";7 r* g5 G0 |# Y6 Z
string fullPath = appPath.GetBuffer(0) +seperator+szFileName;+ ?& ?0 D9 E6 I) {
myDocument->SaveFile(fullPath.c_str());//保存到文件$ h$ c+ d; x% g& V" n; w4 h
}
/ S& u. k4 K# P& m9 n$ u8 L; b& u7 @ catch (string& e)
& w2 f. j! e0 Q/ z2 w {: }5 ?4 j8 x; r+ J7 J$ u; q
return false;
8 q( W, Y5 P b* i }& Y$ ]% _: }$ g U" Q
return true;
2 S/ P L& ^! \% R9 m8 j}
, s2 \4 C9 x S5 G
: |, u, I1 ?% Zbool ReadXmlFile(string& szFileName)
; R \/ n1 s3 r: x$ N# Z. x; [! N{//读取Xml文件,并遍历. P, `+ C; |# w# _. Q
try+ }9 K8 p" m3 ^3 i" _
{
8 L5 Y( v7 c a% C$ w5 S CString appPath = GetAppPath();
4 q% e$ Z' E6 L1 Z' {. \1 V* } string seperator = "\\";2 |; u/ q: @1 A. e: a% A: y; y
string fullPath = appPath.GetBuffer(0) +seperator+szFileName;
+ P2 `) n& d) H* n+ ~& }2 Z //创建一个XML的文档对象。
/ M: l* y( W; t, Z, O TiXmlDocument *myDocument = new TiXmlDocument(fullPath.c_str());
: f6 ? ^4 L U8 e9 K( A myDocument->LoadFile();! f+ B; ^0 a$ r2 u- L/ U
//获得根元素,即Persons。
4 k' c* F& d) o1 f2 Y TiXmlElement *RootElement = myDocument->RootElement();
8 ]1 }. q0 T9 h* k+ K8 g //输出根元素名称,即输出Persons。
" D( R3 r0 w8 [ cout << RootElement->Value() << endl;7 t, V( Q% h% _+ T
//获得第一个Person节点。
' T# e; O1 L; o8 D/ p TiXmlElement *FirstPerson = RootElement->FirstChildElement();) v5 @6 T9 l, I/ M5 d
//获得第一个Person的name节点和age节点和ID属性。
5 |1 P4 u k' G& r0 C1 r( S0 q" D TiXmlElement *NameElement = FirstPerson->FirstChildElement();
- b) Q0 p9 F) o5 }/ ?$ J TiXmlElement *AgeElement = NameElement->NextSiblingElement();8 y) U; j9 A" a2 d" G
TiXmlAttribute *IDAttribute = FirstPerson->FirstAttribute();
! F7 S) i, R+ X$ [& n8 v' l //输出第一个Person的name内容,即周星星;age内容,即;ID属性,即。
8 S* t( p& A) p( c3 |! l cout << NameElement->FirstChild()->Value() << endl;5 W ^3 U' c: u2 Y
cout << AgeElement->FirstChild()->Value() << endl;
' m& `2 _ }5 V6 j' W cout << IDAttribute->Value()<< endl;% n% q1 N1 l& H6 _
}
{3 z9 @, ?/ z* f( ~$ e catch (string& e)
7 F- d' x! l) ? {
K1 p& G: t$ n" C. C W return false;
( M/ ^- f( V- Q: [0 l }( G1 L0 s8 G1 {2 h" r
return true;0 Y8 c& |6 j# ]9 n) D2 C- j1 x! B
}' V" h5 D2 Y4 d4 b+ e% I3 y! c
int main()
4 T' w/ j$ D# {/ y4 D- S{0 M* u: U, H0 x
string fileName = "info.xml";
; e+ T6 ^& [$ p& _0 ~# C+ s9 k6 [& h7 S CreateXmlFile(fileName);8 c+ Z `9 ]: u$ e: }& w+ x
ReadXmlFile(fileName);* W1 k+ `6 _2 Q4 [9 [ Q
}
! Z) w5 ]* t* L- ?2 s' H3 p7 `& O/ w- R: A4 a
) O: J0 h1 @; C3 p( _+ E& c4 @ |