C++宽字符串转字符串

这文章是更改别人代码

#include <string>
#include <iostream>
#include <stdlib.h>
#include <windows.h>
#include <locale>
#include <locale.h>
#define _A_WIN //如果你是windows
using namespace std;
//把字符串转换成宽字符串
wstring string_wstring(string sToMatch)
{
#ifdef _A_WIN
    int iWLen = MultiByteToWideChar( CP_ACP, 0, sToMatch.c_str(), sToMatch.size(), 0, 0 ); // 计算转换后宽字符串的长度。(不包含字符串结束符)
    wchar_t *lpwsz = new wchar_t [iWLen + 1];
    MultiByteToWideChar( CP_ACP, 0, sToMatch.c_str(), sToMatch.size(), lpwsz, iWLen ); // 正式转换。
    lpwsz[iWLen] = L'';
    wstring wsToMatch(lpwsz);
    delete []lpwsz;
    return wsToMatch;
#elifdef _A_LINUX
    setlocale( LC_CTYPE, "" ); // 很重要,没有这一句,转换会失败。
    int iWLen = mbstowcs( NULL, sToMatch.c_str(), sToMatch.length() ); // 计算转换后宽字符串的长度。(不包含字符串结束符)
    wchar_t *lpwsz = new wchar_t[iWLen + 1];
    int i = mbstowcs( lpwsz, sToMatch.c_str(), sToMatch.length() ); // 转换。(转换后的字符串有结束符)
    wstring wsToMatch(lpwsz);
    delete []lpwsz;
    return wsToMatch;
#endif
    //return wsToMatch;
    return NULL;
}
//把宽字符串转换成字符串,输出使用
string wstring_string(wstring sToMatch)
{
#ifdef _A_WIN
    string sResult;
    int iLen = WideCharToMultiByte( CP_ACP, NULL, sToMatch.c_str(), -1, NULL, 0, NULL, FALSE ); // 计算转换后字符串的长度。(包含字符串结束符)
    char *lpsz = new char[iLen];
    WideCharToMultiByte( CP_OEMCP, NULL, sToMatch.c_str(), -1, lpsz, iLen, NULL, FALSE); // 正式转换。
    sResult.assign( lpsz, iLen - 1 ); // 对string对象进行赋值。
    delete []lpsz;
    return sResult;
#elifdef _A_LINUX
    int iLen = wcstombs( NULL, sToMatch.c_str(), 0 ); // 计算转换后字符串的长度。(不包含字符串结束符)
    char *lpsz = new char[iLen + 1];
    int i = wcstombs( lpsz, sToMatch.c_str(), iLen ); // 转换。(没有结束符)
    lpsz[iLen] = '';
    string sResult(lpsz);
    delete []lpsz;
    return sResult;
#endif
    //return sResult;
    return NULL;
}

更改

wstring string_wstring(string sToMatch):return wsToMatch;
string wstring_string(wstring sToMatch):return sResult;
wstring string_wstring(string sToMatch):lpwsz[iWLen] = L'';
string wstring_string(wstring sToMatch):lpsz[iLen] = '';
#elif:#elifdef;

参考:http://blog.csdn.net/stephen_yin/article/details/6292728

原文地址:https://www.cnblogs.com/lindexi/p/12087765.html