C++库Tinyxml对xml进行操作

首先将这6项,添加到源文件中,否则会出错。
在这里插入图片描述
在这里插入图片描述


头文件包含

#include<string>
#include<iostream>
#include"tinystr.h"
#include"tinyxml.h"

根据标签名获取元素
在这里插入图片描述

TiXmlElement* 自定变量=上一级元素指针变量->FirstChildElement(标签名)

获取文本
在这里插入图片描述

要获取上图中的 cai

TiXmlElement* name=.................
name->GetText();或者
name->FirstChild();

XML文件:

<Persons>
	<Person ID="1" sex="man">
		<name>cai</name>
		<age>20</age>
	</Person>
	<Person ID="2">
		<name>lai</name>
		<age>18</age>
	</Person>
</Persons>

啊啊啊啊

#include<string>
#include<iostream>
#include"tinystr.h"
#include"tinyxml.h"
using namespace std;
int main()
{
	TiXmlDocument doc;//创建文档元素
	bool load_ok=doc.LoadFile("1.xml");//读取正确与否的bool型变量
	if (!load_ok)
	{
		cout << "no such file" << endl;
		exit(0);
	}
	/
	TiXmlElement* root= doc.RootElement();//创建根元素指针,根元素为文档元素的子元素
	/*if (!r)  //若根元素空,退出。一般可不用
	{
		cout << "no root element" << endl;
		doc.Clear();
		exit(0);
	}*/
	cout << root->Value() << endl;//根元素名称
	//
	TiXmlElement* person = root->FirstChildElement();
	cout << person->Value() << endl;//第一个子元素名称

	TiXmlElement* name = person->FirstChildElement();
	TiXmlElement* age = name->NextSiblingElement();
	TiXmlAttribute* ID = person->FirstAttribute();
	TiXmlAttribute* sex = ID->Next();
	cout << name->FirstChild()->Value() << endl;
	cout << name->GetText() << endl;
	cout << ID->Value() << endl;
	cout << sex->Value() << endl;

	
	doc.Clear();

	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值