首页 > 后端开发 > C++ > 正文

如何将 Windows API 错误代码转换为人类可读的文本消息?

Linda Hamilton
发布: 2024-11-18 09:15:02
原创
717 人浏览过

How to Translate Windows API Error Codes into Human-Readable Text Messages?

如何从 Windows API 中的错误代码检索文本错误消息

在 Windows API 中,GetLastError() 函数返回整数错误指示系统调用结果的代码。要获得与此代码对应的人类可读的错误消息,我们可以采用以下技术:

方法 1:使用 FormatMessage() 函数

FormatMessage( ) 函数提供了一种将错误代码转换为文本消息的便捷方法。它需要几个参数:

  • FORMAT_MESSAGE_ALLOCATE_BUFFER:此标志指示函数为消息文本分配缓冲区。
  • NULL:消息的来源。
  • errorMessageID:检索消息的错误代码。
  • MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT):指定错误消息的语言中性版本。
  • (LPSTR)&messageBuffer:指针到将接收消息文本的缓冲区。
  • 0:缓冲区的大小(如果设置了 FORMAT_MESSAGE_ALLOCATE_BUFFER 标志,则忽略)。
  • NULL:保留;设置为 NULL。

示例代码:

//Returns the last Win32 error, in string format. Returns an empty string if there is no error.
std::string GetLastErrorAsString()
{
    //Get the error message ID, if any.
    DWORD errorMessageID = ::GetLastError();
    if(errorMessageID == 0) {
        return std::string(); //No error message has been recorded
    }
    
    LPSTR messageBuffer = nullptr;

    //Ask Win32 to give us the string version of that message ID.
    //The parameters we pass in, tell Win32 to create the buffer that holds the message for us (because we don't yet know how long the message string will be).
    size_t size = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
                                 NULL, errorMessageID, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&messageBuffer, 0, NULL);
    
    //Copy the error message into a std::string.
    std::string message(messageBuffer, size);
    
    //Free the Win32's string's buffer.
    LocalFree(messageBuffer);
            
    return message;
}
登录后复制

以上是如何将 Windows API 错误代码转换为人类可读的文本消息?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板