gpt4 book ai didi

c++ - 有没有办法处理 libxml sax 解析中的错误?

转载 作者:行者123 更新时间:2023-11-28 07:39:05 24 4
gpt4 key购买 nike

由于某种原因,我必须在我的 C++ 代码中使用 libxml,我的程序正在使用 sax 方法解析 xml 文件。有什么方法可以处理解析中的错误或异常吗?提前致谢。

最佳答案

您可以像这样编写自己的错误处理程序:

static void my_error(void *user_data, const char *msg, ...) {
va_list args;

va_start(args, msg);
g_logv("XML", G_LOG_LEVEL_CRITICAL, msg, args);
va_end(args);
}

static void my_fatalError(void *user_data, const char *msg, ...) {
va_list args;

va_start(args, msg);
g_logv("XML", G_LOG_LEVEL_ERROR, msg, args);
va_end(args);
}

(示例来自 here)

并使用 xmlSetGenericErrorFunc 注册它们和 xmlSetStructuredErrorFunc .

没有上下文的注册示例:

xmlSetGenericErrorFunc(NULL, my_fatalError);

关于c++ - 有没有办法处理 libxml sax 解析中的错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16191886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com