我使用微软的 XML Lite (http://msdn.microsoft.com/en-us/library/windows/desktop/ms752872%28v=vs.85%29.aspx)
有没有办法忽略它可能做的任何验证错误(我在与“”相关的节点上遇到一些模糊的错误 - 尽管 XML 输入看起来很好)并继续下一个节点?
我有这样的阅读循环
while ( !reader->IsEOF())
{
result = reader->Read(&nodeType);
if (result != S_OK)
{
//just ignore cuurrent read and continue reading more from XML
continue; // does not work
}