tinyxml
TinyXml Parser refuses to load file properly
I have the following xml file: <?xml version=\"1.0\" ?> <Hello>World</Hello> Which is located in the very same 开发者_如何转开发directory as all my other files.[详细]
2023-03-30 07:05 分类:问答how to free memory when using TinyXML?
I am looking over leak memory. I am working with Valgrind and i have some errors like: Invalid read of size 1[详细]
2023-03-30 03:06 分类:问答Programmably created tinyxml xml file not loading in Internet Explorer
All of the examples I followed for tinyxml resulted in xml files that I was able to view in Internet Explorer.[详细]
2023-03-24 01:20 分类:问答error at tinyxml when deserialize
I have the following xml: <Name /> <Sur> mmm </Sur> When I deserialize I wrote: TiXmlElement* section;[详细]
2023-03-23 06:48 分类:问答xml parsing in c++ using tinyxml
i am creating xml file in c++ i wrote the code like creating writing the xml file in c++ as shown below[详细]
2023-03-16 21:27 分类:问答how to obtain the value from an xml tag using FirstCHildElement
I am working in C++. I would like to ask how to obtain the value text from: <message> text </message>[详细]
2023-03-16 04:24 分类:问答What is this (0x01000000) and how do I store it?
So I\'ve created an XML file that will configure an application that has already been built. Up until now, it was hard-coded with constants that represented offset values in flash memory.[详细]
2023-03-16 02:25 分类:问答tinyXML xml parsing with c++ without the xml file
I am trying to parse xml from a message like this: char *开发者_Go百科 data = message.c_str (); How can I create the xmlDoc with the string or a char array data, meaning without the xml file?I thin[详细]
2023-03-07 06:27 分类:问答tinyXml how to add an element
I have the following: TiXmlDocument doc; TiXmlDeclaration * decl = new TiXmlDeclaration( \"1.0\", \"utf-8\", \"\");[详细]
2023-03-06 11:09 分类:问答tinyxml c++ using TiXmlText in storing integer data
as per the class referencethe TixmlText takes const char* values as input. i need to store integer data read from a text file into xml. the integer data is stored in int vector and each element of th[详细]
2023-02-19 05:16 分类:问答