VC++ TinyXML
下载TinyXML库文件http://sourceforge.net/projects/tinyxml/
在TinyXML的目录找到tinystr.h, tinyxml.h,tinystr.cpp,tinyxml.cpp, tinyxmlerror.cpp,tinyxmlparser.cpp六个文件加入到自己的项目中去,在相应的工程文件中加入两个头文件 #include "tinyxml.h" ,#include "tinystr.h",在 tinystr.cpp,tinyxml.cpp, tinyxmlerror.cpp, tinyxmlparser.cpp四个文件的第一行加入头文件 #include "stdafx.h",然后即可使用TinyXML编程。
=======================================================
要读取的xml 数据如下:
<?xml version="1.0" encoding="gb2312" standalone="yes" ?>
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<prop>
<id>100</id>
<title> test 1</title>
</prop>
<prop>
<id>200</id>
<title> test 2</title>
</prop>
</root>
注意要将 encoding设为gb2312格式,我一开始设置的是utf-8,结果遇到在程序里
写入中文没问题, 但在读出该中文时却有异常,把后面的 </ 符号也当作值读出来
了,后来和一同事讨论后才知道是编码问题。
=======================================================
string filefullPath = 要读取xml文件的绝对路径
//创建文件对象
TiXmlDocument * myDocument = new TiXmlDocument(filefullPath.c_str());
//加载文件数据
myDocument->LoadFile();
//获取根节点
TiXmlElement *RootElement = myDocument->RootElement();
=======================================================
以下是简单的读取操作:
//第一个子节点 TiXmlElement *CurrentPerson = RootElement->FirstChildElement();
//遍历获取指定节点数据 while(CurrentPerson) {
//子节点第一个属性 id TiXmlElement *IdElement = CurrentPerson->FirstChildElement();
//第一个属性的值 int nodeID = atoi(IdElement->FirstChild()->Value());
//子节点第二个属性 title TiXmlElement *TitleElement = IdElement->NextSiblingElement();
//第二个属性的值 CString nodeTitle = TitleElement->FirstChild()->Value();
.....................
如果还有后续属性,依次读取
.....................
维护读出的数据
.....................
//指向下一节点 CurrentPerson = CurrentPerson->NextSiblingElement(); } =======================================================
以下是增加xml记录的操作,例如要增加 id 为 300,title 为 test3 的记录:
//创建节点对象 TiXmlElement *PersonElement = new TiXmlElement("prop");
//链接到根节点 RootElement ->LinkEndChild(PersonElement);
//创建节点对象的属性节点 TiXmlElement *IdElement = new TiXmlElement("id"); TiXmlElement *TitleElement =new TiXmlElement("title");
//将属性节点链接到子节点 PersonElement->LinkEndChild(IdElement); PersonElement->LinkEndChild(TitleElement);
//创建属性对应数值对象
TiXmlText *idContent = new TiXmlText("300");
TiXmlText *titleContent = new TiXmlText("test3");
//将数值对象关联到属性节点 IdElement->LinkEndChild(idContent); TitleElement->LinkEndChild(titleContent);
//保存到文件 myDocument->SaveFile(m_filefullPath.c_str());
=======================================================
以下是删除记录操作,例如要删除id为300 的记录:
//获取当前要删除的节点 TiXmlElement * childElement = 根据id从自己读取时缓存的数据中获得
//从根节点移除子节点 RootElement->RemoveChild(childElement);
//保存文件 myDocument->SaveFile(m_filefullPath.c_str());
=======================================================
VC++ TinyXML的更多相关文章
- TinyXML 在vs2010 VC++使用
1.下载TinyXML http://www.grinninglizard.com/tinyxml/ 解压缩,将以下六个文件复制到您的工程项目文件(跟您的cpp文件在一个目录下)中 tinyxml ...
- tinyxml学习2
在TinyXML中,根据XML的各种元素来定义了一些类: TiXmlBase:整个TinyXML模型的基类. TiXmlAttribute:对应于XML中的元素的属性. TiXmlNode:对应于DO ...
- 转:VC解析XML文件-CMarkup的使用详解
本篇文章是对VC解析XML文件-CMarkup的使用进行了详细的分析介绍,需要的朋友参考下 VC解析XML文件的工具有很多,CMarkup, tinyXML,还有IBM的,MS的等等. 据说tinyX ...
- VC++源文件编码
目录 第1章源代码文件 1 1.1 研究思路 1 1.2 实验结果 3 1.3 #pragma setlocale 4 1.4 /source-charset 5 1.5 ...
- C++ TinyXml操作(含源码下载)
前言 TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译,使用TinyXML进行C++ XML解析,使用简单,容易上手.这个解析库的模型通过解析X ...
- XML解析器(TinyXML)的使用指南
关于XML文件的解析方法的引导, 大家可以去试试这个工具(TinyXML) 1.首先下载TinyXML库的文件,这里给出链接,大家自己去下吧,记着要上国际http://prdownloads.sour ...
- 转载 VC轻松解析XML文件 - CMarkup类的使用方法
VC轻松解析XML文件 - CMarkup类的使用方法http://www.cctry.com/thread-3866-1-1.html VC解析XML文件的工具有很多,CMarkup, tinyXM ...
- 【C/C++开发】TinyXml操作(含源码下载)
前言 TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译,使用TinyXML进行C++ XML解析,使用简单,容易上手. 这个解析库的模型通过解析XM ...
- Windows 常用运行库下载 (DirectX、VC++、.Net Framework等)
经常听到有朋友抱怨他的电脑运行软件或者游戏时提示缺少什么 d3dx9_xx.dll 或 msvcp71.dll.msvcr71.dll又或者是 .Net Framework 初始化之类的错误而无法正常 ...
随机推荐
- Spring控制Hibernate的缓存机制ehcache
首先在spring.xml中进入bean <prop key="hibernate.cache.use_second_level_cache">true</pro ...
- 【HDU 5578】Friendship of Frog
题 题意 求相同字母最近距离 分析 用数组保存各个字母最后出现的位置,维护最小距离. 代码 #include <cstdio> int c[30],n,p,a,minl; char ch; ...
- configure new linux
vim http://www.cnblogs.com/wswang/p/5088078.html zsh sh -c "$(curl -fsSL https://raw.github. ...
- C++中使用array报错 requires compiler and library surpport for the ISO c++ 2011 standard
#error This file requires compiler and library support for the \ISO C++ 2011 standard. This support ...
- 初学JDBC,防SQL注入简单示例
在JDBC简单封装的基础上实现 public class UserDao{ public static void testGetUser(String userName) throws Excepti ...
- 使用Tengine替代Nginx作为负载均衡服务器
Tengine是由淘宝网发起的Web服务器项目.它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性.Tengine的性能和稳定性已经在大型的网站如淘宝网,天猫商城等得到了很好的检 ...
- Applying Eigenvalues to the Fibonacci Problem
http://scottsievert.github.io/blog/2015/01/31/the-mysterious-eigenvalue/ The Fibonacci problem is a ...
- Visual Studio IIS Express 不支持.json后缀的mime类型
vs默认web调试工具中并不支持.json后缀的mime类型. 如何解决,两个方案: 局部单应用:web.config: <system.webServer> .... <stati ...
- phpcms 采集教程
Phpcms网站管理系统目前最新版本为Phpcms v9,作为国内主流CMS系统之一,目前已有数万网站的应用规模.那么其自带的采集模块功能如何呢,来看看吧. 文章采集 Phpcms v9默认内置有文章 ...
- gvim-ide plugins
omnicppcomplete-0.41.zip after: ftplugin: c.vim,cpp.vim,两个文件的内容相同, 其中都只有一个call语句: call omni#cpp#comp ...