`

BSTR、char*和CString转换

    博客分类:
  • VC
阅读更多

BSTR、char*和CString转换


(1) char*转换成CString


若将char*转换成CString,除了直接赋值外,还可使用CString::Format进行。例如:


char chArray[] = "This is a test"; 

char * p = "This is a test";



LPSTR p = "This is a test";


或在已定义Unicode应的用程序中


TCHAR * p = _T("This is a test");



LPTSTR p = _T("This is a test"); 

CString theString = chArray; 

theString.Format(_T("%s"), chArray); 

theString = p;


(2) CString转换成char*


若将CString类转换成char*(LPSTR)类型,常常使用下列三种方法:


方法一,使用强制转换。例如:


CString theString( "This is a test" ); 

LPTSTR lpsz =(LPTSTR)(LPCTSTR)theString; 


方法二,使用strcpy。例如:


CString theString( "This is a test" ); 

LPTSTR lpsz = new TCHAR[theString.GetLength()+1]; 

_tcscpy(lpsz, theString);


需要说明的是,strcpy(或可移值Unicode/MBCS的_tcscpy)的第二个参数是 const wchar_t* (Unicode)或const char* (ANSI),系统编译器将会自动对其进行转换。


方法三,使用CString::GetBuffer。例如:


CString s(_T("This is a test ")); 

LPTSTR p = s.GetBuffer(); 

// 在这里添加使用p的代码 

if(p != NULL) *p = _T('\0'); 

s.ReleaseBuffer(); 

// 使用完后及时释放,以便能使用其它的CString成员函数


(3) BSTR转换成char*


方法一,使用ConvertBSTRToString。例如:


#include 

#pragma comment(lib, "comsupp.lib") 

int _tmain(int argc, _TCHAR* argv[]){ 

BSTR bstrText = ::SysAllocString(L"Test"); 

char* lpszText2 = _com_util::ConvertBSTRToString(bstrText); 

SysFreeString(bstrText); // 用完释放 

delete[] lpszText2; 

return 0; 


方法二,使用_bstr_t的赋值运算符重载。例如:


_bstr_t b = bstrText; 

char* lpszText2 = b;


(4) char*转换成BSTR


方法一,使用SysAllocString等API函数。例如:


BSTR bstrText = ::SysAllocString(L"Test"); 

BSTR bstrText = ::SysAllocStringLen(L"Test",4); 

BSTR bstrText = ::SysAllocStringByteLen("Test",4);


方法二,使用COleVariant或_variant_t。例如:


//COleVariant strVar("This is a test"); 

_variant_t strVar("This is a test"); 

BSTR bstrText = strVar.bstrVal;


方法三,使用_bstr_t,这是一种最简单的方法。例如:


BSTR bstrText = _bstr_t("This is a test");


方法四,使用CComBSTR。例如:


BSTR bstrText = CComBSTR("This is a test");



CComBSTR bstr("This is a test"); 

BSTR bstrText = bstr.m_str;


方法五,使用ConvertStringToBSTR。例如:


char* lpszText = "Test"; 

BSTR bstrText = _com_util::ConvertStringToBSTR(lpszText);


(5) CString转换成BSTR


通常是通过使用CStringT::AllocSysString来实现。例如:


CString str("This is a test"); 

BSTR bstrText = str.AllocSysString(); 

… 

SysFreeString(bstrText); // 用完释放 


(6) BSTR转换成CString


一般可按下列方法进行:


BSTR bstrText = ::SysAllocString(L"Test"); 

CStringA str; 

str.Empty(); 

str = bstrText; 



CStringA str(bstrText);


(7) ANSI、Unicode和宽字符之间的转换


方法一,使用MultiByteToWideChar将ANSI字符转换成Unicode字符,使用WideCharToMultiByte将Unicode字符转换成ANSI字符。


方法二,使用“_T”将ANSI转换成“一般”类型字符串,使用“L”将ANSI转换成Unicode,而在托管C++环境中还可使用S将ANSI字符串转换成String*对象。例如:


TCHAR tstr[] = _T("this is a test"); 

wchar_t wszStr[] = L"This is a test"; 

String* str = S”This is a test”;


方法三,使用ATL 7.0的转换宏和类。ATL7.0在原有3.0基础上完善和增加了许多字符串转换宏以及提供相应的类,它具有如图3所示的统一形式:


其中,第一个C表示“类”,以便于ATL 3.0宏相区别,第二个C表示常量,2表示“to”,EX表示要开辟一定大小的缓冲。SourceType和DestinationType可以是A、T、W和OLE,其含义分别是ANSI、Unicode、“一般”类型和OLE字符串。例如,CA2CT就是将ANSI转换成一般类型的字符串常量。下面是一些示例代码:


LPTSTR tstr= CA2TEX<16>("this is a test"); 

LPCTSTR tcstr= CA2CT("this is a test"); 

wchar_t wszStr[] = L"This is a test"; 

char* chstr = CW2A(wszStr); 


六、结语


几乎所有的程序都要用到字符串,而Visual C++.NET由于功能强大、应用广泛,因而字符串之间的转换更为频繁。本文几乎涉及到目前的所有转换方法。当然对于.NET框架来说,还可使用Convert和Text类进行不同数据类型以及字符编码之间的相互转换。

分享到:
评论

相关推荐

    BSTR和CString和char的转换

    ### BSTR和CString和char的转换 #### 一、引言 在开发过程中,不同的字符串类型之间经常需要互相转换以适应不同的应用场景。本篇文章详细介绍了`BSTR`、`CString`与`char`类型的字符串相互转换的方法。这些转换在...

    BSTR、Char和CString类型的转换.txt

    从CString转换回char*,可以通过`GetBuffer`方法获取内部缓冲区指针,但需要注意释放缓冲区: ```cpp CString s(_T("This is a test")); LPTSTR p = s.GetBuffer(); // 使用p之后 s.ReleaseBuffer(); ``` 或者直接...

    cstring的相关知识.docx

    #### 六、BSTR、char*和CString转换 **char*转换成CString**: - 直接赋值:`CString str = "test";` - 使用`CString::Format`方法。 **CString转换成char***: - 使用`CString::GetBuffer/SetBuffer`。 **BSTR...

    CString操作指南

    - **CString与char*的转换** - **char*到CString**:可以直接赋值,或者使用`CString(const char* str)`构造函数。 ```cpp char* str = "Hello"; CString cstr(str); ``` - **CString到char***: - 使用`...

    CString类中各变量类型转化

    CString与char*的相互转换** - **CString到char\***:可以使用`GetBuffer()`方法或者`LPCTSTR`强制转换: ```cpp char* cstr = s.GetBuffer(); // 或者 char* cstr = const_cast&lt;char*&gt;(s.GetString()); ``` - **...

    VC/MFC.CString操作指南

    4. **CString与char*的相互转换** - **char*到CString**:可以直接赋值或使用构造函数。 ```cpp const char* psz = "Hello"; CString str(psz); ``` - **CString到char***: - **LPCTSTR强制转换**: ```...

    CString 转换操作详解

    6. **与`BSTR`和`VARIANT`的转换** - `CString`到`BSTR`:使用`SysAllocString`和`LPCTSTR`转换。 - `BSTR`到`CString`:使用`_bstr_t`类的构造函数。 - `VARIANT`到`CString`:使用`VARIANT`的`vt`成员判断类型...

    Vc中BSTR,char和CString的转换

    几乎所有的程序都要用到字符串,而Visual C++由于功能强大、应用广泛,因而字符串之间的转换更为频繁,这里介绍多种字符...当然对于.NET框架来说,还可使用Convert和Text类进行不同数据类型以及字符编码之间的相互转换。

    CString 类与常用数学类型转换

    本篇将深入探讨如何在`CString`类和其他常用的数学类型之间进行转换,包括字符串与数字、BSTR、VARIANT等类型之间的转换。 【数学类型与 CString 相互转化】: 1. **从数学类型到 CString**:你可以使用`Format`...

    CString 操作指南

    4. **与char*的相互转换** - **char*转CString**:直接赋值即可: ```cpp char* str = "Hello"; CString cstr(str); ``` - **CString转char***: - 使用`LPCTSTR`强制类型转换: ```cpp char* psz = (char*...

    mfc关于CString的所有操作

    **四、将CString转换为整数** 要将`CString`转换为整数,可以使用`_ttoi`或`Atoi`函数: ```cpp CString strNum = "123"; int num = _ttoi(strNum); // 或者 int num = Atoi(strNum); ``` **五、CString与LPCTSTR...

    关于MFC数据类型转换

    2. **`CString`与`BSTR`之间的转换** - **`CString`到`BSTR`**: ```cpp BSTR bstrValue = ::SysAllocString(L"Ա"); char* buf = _com_util::ConvertBSTRToString(bstrValue); SysFreeString(bstrValue); ```...

    VC++不同数据类型的转换

    常见的数据类型包括`CString`、`BSTR`、`std::string`、`char`、`char*`等。本文将详细介绍这些类型之间的相互转换方法。 #### `CString`, `int`, `std::string`, `char*` 之间的转换 1. **`std::string` 转 `...

    MFC 类型转换/收集了MFC中几乎所有类型之间的转换方法

    3. **CString to LPCSTR**:要将CString转换为LPCSTR(常量宽字符指针),需要获取字符串的长度并调用GetBuffer方法。 ```cpp CString cStr = _T("Hello,world!"); int nLen = cStr.GetLength(); LPCSTR lpszBuf...

    MFC 数据类型转换

    除了上述几种基本类型转换外,还需要了解如何在 `CString` 与其他数据类型之间进行转换,比如整型、浮点型以及特定的数据结构如 `BSTR` 和 `_variant_t` 等。 - **整型到CString** 使用 `CString` 的构造函数或者...

    CString详解,介绍CString类

    `CString`与`char*`之间的转换** - **`char*`转`CString`** ```cpp char *cStr = "Hello"; CString cString(cStr); ``` - **`CString`转`char*`** - 使用`GetBuffer`方法获取内部缓冲区指针: ```cpp ...

Global site tag (gtag.js) - Google Analytics