使用 c++ 进行tinyXML xml 解析没有 xml 文件

发布于 2024-11-08 16:23:59 字数 188 浏览 0 评论 0原文

我正在尝试从这样的消息中解析 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑶笙 2024-11-15 16:23:59

我认为您可以通过 TiXmlDocument 中的 Parse 方法来执行此操作。所以像这样:

TiXmlDocument doc;
doc.Parse((const char*)data, 0, TIXML_ENCODING_UTF8);

I think you can do so via the Parse method in TiXmlDocument. So something like:

TiXmlDocument doc;
doc.Parse((const char*)data, 0, TIXML_ENCODING_UTF8);
暗地喜欢 2024-11-15 16:23:59

您可以使用 std::istream&运算符>> (std::istream&in, TiXmlNode&base);tinyxml.h中定义的函数:

C++ 风格输入:

基于std::istream运算符>>

从流中读取 XML,使其成为
对于网络传输很有用。这
棘手的部分是知道 XML 何时
文件已完成,因为将有
几乎可以肯定是其他数据
溪流。 TinyXML 将采用 XML
读取后数据就完整了
根元素。换句话说,
结构不良的文件
具有多个根元素将
没有正确读取。另请注意
运算符>>比
解析,由于两者的实现
STL 和 TinyXML 的局限性。

You could use the std::istream& operator >> (std::istream& in, TiXmlNode& base); function defined in tinyxml.h:

C++ style input:

based on std::istream operator>>

Reads XML from a stream, making it
useful for network transmission. The
tricky part is knowing when the XML
document is complete, since there will
almost certainly be other data in the
stream. TinyXML will assume the XML
data is complete after it reads the
root element. Put another way,
documents that are ill-constructed
with more than one root element will
not read correctly. Also note that
operator>> is somewhat slower than
Parse, due to both implementation of
the STL and limitations of TinyXML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文