如何使用 Unicode 从 CString 转换为 unsigned char*?

Posted

技术标签:

【中文标题】如何使用 Unicode 从 CString 转换为 unsigned char*?【英文标题】:How does one convert from CString to unsigned char* with Unicode? 【发布时间】:2009-01-28 20:51:07 【问题描述】:

我在这里尝试做一些简单的事情。当我在 Visual Studio 2008 中使用 unicode 字符集执行以下代码时,xmlString 是正确的。

不幸的是,我需要将 CString 转换为 unsigned char*。 使用下面的代码,ucStr 变为“

我应该如何将 CString 转换为 unsigned char* 并保留所有信息?

        CString xmlString;
        xmlString.Format( _T("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><gateway><config-read><%s /></config-read></gateway>"), keyName);

        unsigned char * ucStr = reinterpret_cast<unsigned char *> (xmlString.GetBuffer());
        pgIRequest->SendXmlData( "dgv/gateway.xml", ucStr, xmlString.GetLength() + 1) ; 

【问题讨论】:

我认为这方面的好书应该是 Joel 的 unicode 文章,其名称很吸引人“每个软件开发人员绝对、肯定必须了解 Unicode 和字符集的绝对最低要求(没有借口!)”:@987654321 @ 【参考方案1】:

我发现最简单的就是使用 CStringA 构造函数,像这样:

    CString xmlString;
    xmlString.Format( _T("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><gateway><config-read><%s /></config-read></gateway>"), "test");

    printf("%s\n",xmlString );  // fails "<"

    //unsigned char * ucStr = reinterpret_cast<unsigned char *> (xmlString.GetBuffer());

    CStringA ucStr( xmlString );

    printf("%s\n",ucStr );   // works!

【讨论】:

这不会“保留所有信息”。 IE。它将删除所有非西方字符。您需要转换为 UTF-8。【参考方案2】:

当您的“keyName”变量开始包含在 ISO-8859-1 编码中无法表示的字符时,此代码 sn-p 可能不起作用。为此,我建议创建一个以 UTF-8 作为编码值的字符串,使用 WideCharToMultiByte 使用 CP_UTF8 代码页转换为 UTF-8 字节流,然后发送生成的 utf8 字节流。

【讨论】:

【参考方案3】:

我认为您想要wcstombs,或者更确切地说,是更安全的对应物wcstombs_s。

【讨论】:

【参考方案4】:

我假设“SendXmlData”需要字节数而不是字符数。

如果是这样,您想将“GetLength() + 1”更改为“(GetLength() + 1)*sizeof(xmlString[0])”。

【讨论】:

" ucStr 变为 ' Pukku 是对的,SendXmlData 中缓冲区的长度与我的问题无关 - 请参阅下面的代码。 现在字符串实际上已经转换了,xmlString.GetLength() 也很好——它应该返回与您的工作版本的 ucStr.GetLength() 相同的结果。因此,这并不能真正证明反对 KenE 的建议。顺便说一句,请确保您也使用无法用 ASCII 表示的输入进行测试。【参考方案5】:

以下是最终成功的代码:

CString xmlString;
        xmlString.Format( _T("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><gateway><config-read><%s /></config-read></gateway>"), keyName);
        CStringA ucStr( xmlString );
        unsigned char * ucStr2 = reinterpret_cast<unsigned char *> (ucStr.GetBuffer());
        pgIRequest->SendXmlData( "dgv/gateway.xml", ucStr2, xmlString.GetLength() + 1) ;// target on gateway to download

【讨论】:

以上是关于如何使用 Unicode 从 CString 转换为 unsigned char*?的主要内容,如果未能解决你的问题,请参考以下文章

如何将CString转换成wstring

如何从 Unicode 中的 CFile::Read() 文件中获取 CString 对象?

CString和string在unicode与非unicode下的相互转换(转)

string,char*及CString类型的相互转换

在 vc++ 中将 Unicode 字节数组转换为 CString

在UNICODE编码格式下, CString 转换为 char* :