- 论坛徽章:
- 0
|
// 先把utf8转成BSTR
//
static int utf8_decode(LPCSTR pUtf8, int cbSize, BSTR *pBstr)
{
if (!pBstr)
return 0;
*pBstr = 0;
if (!pUtf
return 0;
assert(cbSize>0);
int cchNeeded = ::MultiByteToWideChar(CP_UTF8, 0, pUtf8, cbSize, 0, 0);
if (0 == cchNeeded)
return 0;
LPSTR pstr = (LPSTR) ::CoTaskMemAlloc (sizeof(DWORD) + sizeof(WCHAR)*cchNeeded + sizeof(CHAR));
if (!pstr)
return -1; // OUT OF MEMORY
int cchRet = ::MultiByteToWideChar(CP_UTF8, 0, pUtf8, cbSize, (LPWSTR)(pstr+sizeof(DWORD)), cchNeeded);
if (0 == cchRet){
CoTaskMemFree(pstr);
return -2; // ERROR
}
// 0-ending
pstr[ sizeof(DWORD) + sizeof(WCHAR)*cchNeeded ] = 0;
*((DWORD*)pstr) = sizeof(WCHAR)*(cchNeeded);
*pBstr = (BSTR)(pstr + sizeof(DWORD));
assert(cchNeeded>0);
return cchNeeded;
}
// 把unicode转陈ansi
//
static int Unicode2Ansi (LPCWSTR wszStr, LPSTR *ppAnsiOut, WCHAR errMsg[], DWORD dwMsgSize)
{
const UINT CodePage = 0;
int cbRetSize = 0;
*ppAnsiOut = 0;
if ( wszStr == NULL )
return 0;
int cchNeeded ;
if ( 0 == (cchNeeded = ::WideCharToMultiByte (CodePage, 0, wszStr, -1, NULL, 0, NULL, NULL)) ){
GetErrorMsgW(GetLastError(), errMsg, dwMsgSize);
return 0;
}
PSTR szAnsi = (PSTR) ::malloc (sizeof (CHAR) * cchNeeded) ;
if ( szAnsi == NULL ){
#pragma warning( disable: 4996 )
wcscpy(errMsg, L"Out of mempry" ;
#pragma warning( default: 4996 )
return 0;
}
cbRetSize = ::WideCharToMultiByte (CodePage, 0, wszStr, -1, szAnsi, cchNeeded, NULL, NULL);
assert(cbRetSize==cchNeeded);
if ( 0 == cbRetSize) {
GetErrorMsgW(GetLastError(), errMsg, dwMsgSize);
SAFEFREE (szAnsi);
return 0;
}
*ppAnsiOut = szAnsi;
return cbRetSize ;
}
注意java字符串没有末尾空字符
注意BSTR != WSTR
没时间,要不就写出来了
这个论坛的回复验证码太垃圾了 |
|