用C解析XML

发布于 2024-11-15 20:35:05 字数 130 浏览 1 评论 0原文

您好,我正在尝试使用 C 来解析 xml,但我能找到的所有示例都是使用文件来获取 xml,我已将 xml 加载到变量中,并且我希望 libxml2 从那里获取 xml 而不是文件....但我不知道怎么办!

任何帮助将不胜感激,谢谢

Hi I am trying to use C to parse xml, but all the examples I can find are using a file to get the xml, I have the xml already loaded into a variable and I want libxml2 to take the xml from there instead of a file.... but I can't figure out how!

Any help would be appreciated thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

森林迷了鹿 2024-11-22 20:35:05

查看 xmlParseDoc 函数的签名。

它以 const xmlChar * cur 作为参数,xmlChar 实际上定义为 unsigned char 此处

Look at the signature of xmlParseDoc function.

It takes const xmlChar * cur as a parameter, and xmlChar is actually defined as unsigned char here

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