mirror of
https://github.com/zeux/pugixml.git
synced 2024-12-27 13:33:17 +08:00
e73b54e60d
git-svn-id: http://pugixml.googlecode.com/svn/trunk@552 99668b35-9821-0410-8761-19e4c4f06640
30 lines
997 B
C++
30 lines
997 B
C++
#include "pugixml.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
void check_xml(const char* source)
|
|
{
|
|
//[code_load_error_handling
|
|
pugi::xml_document doc;
|
|
pugi::xml_parse_result result = doc.load(source);
|
|
|
|
if (result)
|
|
std::cout << "XML [" << source << "] parsed without errors, attr value: [" << doc.child("node").attribute("attr").value() << "]\n\n";
|
|
else
|
|
{
|
|
std::cout << "XML [" << source << "] parsed with errors, attr value: [" << doc.child("node").attribute("attr").value() << "]\n";
|
|
std::cout << "Error description: " << result.description() << "\n";
|
|
std::cout << "Error offset: " << result.offset << " (error at [..." << (source + result.offset) << "]\n\n";
|
|
}
|
|
//]
|
|
}
|
|
|
|
int main()
|
|
{
|
|
check_xml("<node attr='value'><child>text</child></node>");
|
|
check_xml("<node attr='value'><child>text</chil></node>");
|
|
check_xml("<node attr='value'><child>text</child>");
|
|
check_xml("<node attr='value\"><child>text</child></node>");
|
|
check_xml("<node attr='value'><#tag /></node>");
|
|
}
|