Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁熟悉 libxml++ 知道是否可以从字符串而不是文件加载 XML 文档?或者,如果它可以直接从网页加载文档,那就可以了。
谢谢
听起来您正在寻找xmlpp::Parser::parse_memory或xmlpp::DomParser::parse_memory。
这些类中的每一个都有一个parse_stream方法,该方法采用std::istreamif 更方便。
parse_stream
std::istream
没错,ticpp::DomParser::parse_memory 应该这样做。