2

我遇到的问题是我的应用程序在注册表中输入了不正确的数据(而不是文件路径,它输入了诸如“㩃啜敳获啜敳屲灁”之类的字符),我不知道是什么问题就是,相关源代码如下(包括等已被删除)。

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);

任何帮助将不胜感激。

4

1 回答 1

1

RegSetValueEx 期望(对于 REG_SZ)您传入的数据是 Unicode,除非您没有在您的环境中定义 UNICODE。但是 .c_str 很可能是一个非 Unicode 流。

于 2012-09-10T19:35:39.623 回答