我遇到的问题是我的应用程序正在将不正确的数据输入注册表(而不是文件路径,它输入的字符如“㩃啜敳获啜敳屲灁”)我不知道问题是,相关的源代码如下(包括等已被删除)。
stringstream ss;
char* file_path = getenv("APPDATA");
strcat(file_path, "\\Application.exe");
ss << file_path;
ss >> file_path_string;
CA2W unicodeFile_path(file_path);
cout << "Downloading File";
HRESULT hr = URLDownloadToFile ( NULL, _T("http://example.com/application.exe"), unicodeFile_path, 0, NULL );
cout << "Done" << endl;
cout << "Adding to registry" << endl;
HKEY hKey;
CA2W registryLocation("Software\\Microsoft\\Windows\\CurrentVersion\\Run");
CA2W registryKey("Application");
// Check registry if exists, otherwise create.
RegCreateKeyEx(HKEY_CURRENT_USER,
registryLocation,
0,
NULL,
REG_OPTION_NON_VOLATILE,
KEY_WRITE,
NULL,
&hk,
&dwDisp);
// Store reg value
RegSetValueEx(hk,
registryKey,
NULL,
REG_SZ,
(const BYTE*)file_path_string.c_str(),
file_path_string.size() + 1);
任何帮助将不胜感激。
答案 0 :(得分:1)
RegSetValueEx期望(对于REG_SZ)您传入的数据是Unicode,除非您没有在您的环境中定义UNICODE。但.c_str可能是非Unicode流。