sprintf一个LPCWSTR变量

时间:2010-06-14 14:02:49

标签: c++ windows

我正在尝试调试打印LPCWSTR字符串,但是在缓冲区中sprintf推送期间出现问题,因为它只检索字符串中的第一个字符。

以下是代码:

HANDLE WINAPI hookedCreateFileW(LPCWSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile) {
    char buffer[1024];
    sprintf_s(buffer, 1024, "CreateFileW: %s", lpFileName);
    OutputDebugString(buffer); 
    return trueCreateFileW(lpFileName, dwDesiredAccess, dwShareMode, lpSecurityAttributes, dwFlagsAndAttributes, dwCreationDisposition, hTemplateFile);
}

例如,我得到CreateFileW: CCreateFileW: \

如何正确地将其推入缓冲区?

谢谢。

3 个答案:

答案 0 :(得分:6)

使用swprintf_s这是专为宽字符串设计的sprintf_s版本。

您还需要一个wchar_t而不是char的数组,并使用OutputDebugStringW()

另外,请注意swprintf_w可能不是您想要调用的内容。如果它遇到的字符串长于你给它的大小,它会执行某种断言。我建议你专门测试这种情况。

答案 1 :(得分:6)

你需要告诉sprintf()你传递一个宽字符串。使用%ls说明符:

 sprintf_s(buffer, 1024, "CreateFileW: %ls", lpFileName);

请注意这是多么无效。您的代码在Unicode操作系统上运行。它必须将char []字符串转换回宽字符串,然后才能将其发送到调试器。这只是浪费了CPU周期,导致数据丢失的风险很大。当你在罗马时,像罗马人一样使用wchar_t + wsprintf()。并且#define UNICODE这样你就可以自动调用快速的OutputDebugStringW(),它不需要转换字符串。使用C ++的目的是编写 fast 代码,故意制作缓慢是毫无意义的。

答案 2 :(得分:5)

除非你有一个具体的理由在这个单一函数中定位unicode(而不是在你的整个项目中),否则尽可能使用charset-agnostic宏是明智的:

HANDLE WINAPI hookedCreateFile(LPCTSTR lpFileName, DWORD dwDesiredAccess, DWORD dwShareMode, LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD dwCreationDisposition, DWORD dwFlagsAndAttributes, HANDLE hTemplateFile) {
 TCHAR buffer[1024];
 _stprintf_s(buffer, 1024, _T("CreateFileW: %s"), lpFileName);
 OutputDebugString(buffer); 
 return trueCreateFile(lpFileName, dwDesiredAccess, dwShareMode, lpSecurityAttributes, dwFlagsAndAttributes, dwCreationDisposition, hTemplateFile);
}