4

我想在控制台和/或文件中写入当前窗口标题,但LPWSTRtochar *const char *. 我的代码是:

LPWSTR title = new WCHAR();
HWND handle = GetForegroundWindow();
GetWindowText(handle, title, GetWindowTextLength( handle )+1);

/*Problem is here */
char * CSTitle ???<??? title

std::cout << CSTitle;

FILE *file;
file=fopen("file.txt","a+");
fputs(CSTitle,file);
fclose(file);
4

2 回答 2

4

您只为一个字符分配了足够的内存,而不是整个字符串。当GetWindowText被调用时,它复制的字符多于导致未定义行为的内存。您可以使用std::string它来确保有足够的可用内存并避免自己管理内存。

#include <string>

HWND handle = GetForegroundWindow();
int bufsize = GetWindowTextLength(handle);
std::basic_string<TCHAR>  title(bufsize, 0);
GetWindowText(handle, &title[0], bufsize + 1);
于 2013-05-07T01:07:33.817 回答
3

您需要分配足够的内存来存储标题:

HWND handle = GetForegroundWindow();
int bufsize = GetWindowTextLength(handle) + 1;
LPWSTR title = new WCHAR[bufsize];
GetWindowText(handle, title, bufsize);
于 2013-05-07T00:40:13.153 回答