使用 c++ 进行tinyXML xml 解析没有 xml 文件
我正在尝试从这样的消息中解析 xml:
char * data = message.c_str ();
How can I create the xmlDoc with the string or a char array data,meaning without the xml file?
I am trying to parse xml from a message like this:
char * data = message.c_str ();
How can I create the xmlDoc with the string or a char array data, meaning without the xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以通过 TiXmlDocument 中的 Parse 方法来执行此操作。所以像这样:
I think you can do so via the Parse method in TiXmlDocument. So something like:
您可以使用 std::istream&运算符>> (std::istream&in, TiXmlNode&base);tinyxml.h中定义的函数:
You could use the
std::istream& operator >> (std::istream& in, TiXmlNode& base);
function defined intinyxml.h
: