///
/// UTF8转换成GB2312
///
///
///
public static string UTF8ToGB2312(string str)
{
try
{
Encoding ut...
分类:
其他好文 时间:
2014-07-24 23:27:04
阅读次数:
212
CStringUTF8ToGB2312(CStringstr){intlen;//UTF8转换成Unicodelen=MultiByteToWideChar(CP_UTF8,0,str,-1,NULL,0);wchar_t*pUnicode=newwchar_t[len+1];memset(pUni...
分类:
其他好文 时间:
2014-07-22 23:17:35
阅读次数:
435
这个方法是用windows的字符集转换的,跟sybase 的unicode码表可能在某些符号上有差别,对于大部分字符来说,尤其是 汉字,应该不会有问题的,如果要求比较高的话,可以买sybase的 unicode开发包,:P [code] #include #include #include #...
分类:
其他好文 时间:
2014-06-21 13:25:12
阅读次数:
254