- 论坛徽章:
- 0
|
libiconv,这个库可以转换
davelv 发表于 2010-12-15 13:04 ![]()
写了个程度试了一下,不知道出了什么 诡异的错误:
- #include <stdio.h>
- #include <iconv.h>
- #include <errno.h>
- #include <iostream>
- #include <assert.h>
- #include <string.h>
- using namespace std;
- //ASCII UNICODE
- typedef unsigned short char16;
- int main(){
- char* from = "this is a test";
- size_t fs = strlen(from) + 1;
- char16* to = new char16[fs];
- size_t ts = 2 * fs;
- cout<<"from_size="<< fs << " to_size=" << ts <<endl;
- iconv_t cd = iconv_open("UNICODE", "ASCII");
- assert(cd != (iconv_t)-1);
- size_t csize = iconv(cd, &from, &fs, (char**)&to, &ts);
- iconv_close(cd);
- cout << from << endl << to << endl;
-
- delete to;
-
- return 0;
- }
复制代码 |
|