免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6999 | 回复: 6
打印 上一主题 下一主题

求 C语言 ascii 转制为 unicode (16位) 的API [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-12-15 11:03 |只看该作者 |倒序浏览
记得C/C++中,字符串前面加个L就变成unicode编码了。我测试了一下:
sizeof("this") == 5
sizeof(L"this") == 20 (一个字符怎么占4字节呢?)

printf("size=%d\n",  sizeof(L"this"));

请问,怎么样才能将点一个字节的ascii码字符转换成占2个字节的unicode字符呢?

谢谢!

论坛徽章:
0
2 [报告]
发表于 2010-12-15 11:17 |只看该作者
本帖最后由 davelv 于 2010-12-15 11:21 编辑

这个也是Unicde,具体标准是UTF-32/UCS-4,也就是一个字符占四个字节。
和平台有关,你在windows下写这样的代码就是UTF-16,占2个字节。

论坛徽章:
0
3 [报告]
发表于 2010-12-15 12:53 |只看该作者
这个也是Unicde,具体标准是UTF-32/UCS-4,也就是一个字符占四个字节。
和平台有关,你在windows下写这样的 ...
davelv 发表于 2010-12-15 11:17


我现在要调用JNI的NewString接口,而jchar是占两个字节的。
系统是:Linux ubuntu 2.6.35-22-generic
如何是好呢?

以下是NewString的声明:
/*
* Create a new String from Unicode data.
*
* If "len" is zero, we will return an empty string even if "unicodeChars"
* is NULL.  (The JNI spec is vague here.)
*/
static jstring NewString(JNIEnv* env, const jchar* unicodeChars, jsize len)

论坛徽章:
0
4 [报告]
发表于 2010-12-15 13:04 |只看该作者
libiconv,这个库可以转换
http://www.gnu.org/software/libiconv/#introduction

论坛徽章:
0
5 [报告]
发表于 2010-12-15 14:46 |只看该作者
libiconv,这个库可以转换
davelv 发表于 2010-12-15 13:04


写了个程度试了一下,不知道出了什么 诡异的错误:
  1. #include <stdio.h>
  2. #include <iconv.h>
  3. #include <errno.h>
  4. #include <iostream>
  5. #include <assert.h>
  6. #include <string.h>
  7. using namespace std;
  8. //ASCII UNICODE
  9. typedef unsigned short char16;
  10. int main(){

  11.     char*   from = "this is a test";
  12.     size_t  fs = strlen(from) + 1;
  13.     char16*  to = new char16[fs];
  14.     size_t  ts = 2 * fs;

  15.     cout<<"from_size="<< fs << "  to_size=" << ts <<endl;

  16.     iconv_t cd = iconv_open("UNICODE", "ASCII");
  17.     assert(cd != (iconv_t)-1);
  18.     size_t csize = iconv(cd, &from, &fs, (char**)&to, &ts);
  19.     iconv_close(cd);

  20.     cout << from << endl << to << endl;
  21.         
  22.     delete to;
  23.         
  24.     return 0;
  25. }
复制代码

论坛徽章:
0
6 [报告]
发表于 2010-12-15 14:49 |只看该作者
JNI与字符串操作相关的接口,我找到了以下文档,供大家参考 :

http://download.oracle.com/javas ... l#string_operations

为了提高效率,遇到问题还是要多查多找哇,呵呵

论坛徽章:
0
7 [报告]
发表于 2010-12-15 15:08 |只看该作者
回复 5# linux_kejun

iconv没有unicode这个字符格,您写错了。
http://www.gnu.org/software/libi ... v/iconv_open.3.html

既然JNI的库里面有字符转化函数,那就用自带的,学习了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP