我有一个工具,用户可以通过Qt Gui选择xml来设置一些参数。问题是。当该文件不是有效的xml文件时,我的工具就会崩溃。我在Qt Creator中收到以下错误:
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::property_tree::xml_parser::xml_parser_error> >'
what(): /home/path/to/Executable: expected <
10:40:44: The program has unexpectedly finished.
我可以检查XML是否有效,还是可以捕获错误并执行其他操作而不是终止?
我想显示一条错误消息并取消解析。
我的阅读过程代码为:
#include <boost/property_tree/xml_parser.hpp>
#include <boost/property_tree/ptree.hpp>
...
using boost::property_tree::ptree;
ptree pt;
read_xml(filename, pt);