如何将CString转换为byte []数组?

时间:2018-09-04 06:23:38

标签: c++ arrays mfc type-conversion

我正在尝试在Visual Studio MFC中将CString转换为byte []数组。请参见下面的代码。

CString str_text;
GetDlgItemText(IDC_KEY_TEXT, str_text);
  1. BYTE A[] = "hi I love stackoverflow";
  2. BYTE A[] = str_text;

这里,BYTE A []是字节数组。

无论CStringGetDlgItemText函数如何,如果仅执行(1),我的程序就会运行良好。 但是,如果您键入CString(str_text)(2)而不是“ hi I love stackoverflow”,则会出现错误。那是因为“它无法将CString转换为字节数组”。 我想将CString转换为字节数组。请告诉我我的错误在哪里。

1 个答案:

答案 0 :(得分:1)

这是执行此操作的正确方法。我假设您处理Unicode字符串:

CStringW str = L"Hello World";
// convert to UTF-8
CStringA utf8 = CW2A(str, CP_UTF8);
CByteArray Bytes;   
const size_t nBytes = sizeof(CStringA::XCHAR) * utf8.GetLength();
Bytes.SetSize( nBytes );
std::memcpy( Bytes.GetData(), static_cast<BYTE const*>utf8, nBytes );