宽字符到多字节

时间:2011-11-08 22:22:19

标签: windows visual-c++ ofstream wofstream

我正在尝试将宽字符转换为多字节。它只在yje myfile部分。其余的工作正常。我不能使用wofstream,因为我在几个地方使用ofstream,所以我留下了这个。

void PrintBrowserInfo(IWebBrowser2 *pBrowser) {
BSTR bstr;
pBrowser->get_LocationURL(&bstr);
std::wstring wsURL;
wsURL = bstr;

size_t DSlashLoc = wsURL.find(L"://");
if (DSlashLoc != wsURL.npos)
  {
  wsURL.erase(wsURL.begin(), wsURL.begin() + DSlashLoc + 3);
  }
  DSlashLoc = wsURL.find(L"www.");
  if (DSlashLoc == 0)
{
wsURL.erase(wsURL.begin(), wsURL.begin() + 4);
}
DSlashLoc = wsURL.find(L"/");
if (DSlashLoc != wsURL.npos)
{
wsURL.erase(DSlashLoc);
}
wprintf(L"\n   URL: %s\n\n", wsURL.c_str());
char LogURL = WideCharToMultiByte( CP_ACP, WC_COMPOSITECHECK, wsURL.c_str(), -1, NULL, 0,  NULL, NULL); 
    myfile << "\n   URL:" << LogURL;
    SysFreeString(bstr);
}

void EnumExplorers() {
CoInitialize(NULL);
SHDocVw::IShellWindowsPtr spSHWinds;
IDispatchPtr spDisp;
if (spSHWinds.CreateInstance(__uuidof(SHDocVw::ShellWindows)) == S_OK) {
    long nCount = spSHWinds->GetCount();
    for (long i = 0; i < nCount; i++) {
        _variant_t va(i, VT_I4);
        spDisp = spSHWinds->Item(va);
        SHDocVw::IWebBrowser2Ptr spBrowser(spDisp);
        if (spBrowser != NULL) {
            PrintBrowserInfo((IWebBrowser2 *)spBrowser.GetInterfacePtr());
            spBrowser.Release();
        }
    }
} else {
    puts("Shell windows failed to initialise");
}

}

1 个答案:

答案 0 :(得分:3)

您使用WideCharToMultiByte错误。您需要传递一个字符串缓冲区来接收转换后的字符串。使用NULL0作为参数将返回结果字符串所需的大小。

int length = WideCharToMultiByte (CP_ACP, WC_COMPOSITECHECK, wsURL.c_str(), -1, NULL, 0,  NULL, NULL);
std::string LogURL(length+1, 0);
int result = WideCharToMultiByte (CP_ACP, WC_COMPOSITECHECK, wsURL.c_str(), -1, &LogURL[0], length+1,  NULL, NULL);

您应该检查result是否有非零值,以确保该功能正常工作。