rapidxml读取xml文件操作

前端之家收集整理的这篇文章主要介绍了rapidxml读取xml文件操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include "stdafx.h"
#include <iostream>
#include <rapidxml.hpp>
#include <rapidxml_utils.hpp>
#include <rapidxml_print.hpp>
using namespace rapidxml;

int _tmain(int argc,_TCHAR* argv[])
{
	file<> doc("main.xml");//文件地址
	std::cout<<doc.data()<<std::endl;
	system("PAUSE");
	return EXIT_SUCCESS;
}
原文链接:https://www.f2er.com/xml/297926.html

猜你在找的XML相关文章