继续研究UTF8和UCS-2的选择,这里继续使用上一次提到的函数。
鉴于大家不一定能找到下载的地址,而源文件是允许自由散发的,我将代码打包,提供给大家下载,下载地址还是在讨论新闻组及文件中,名字为unicodeorg.rar,
昨天看了下Windows下的方法,这次研究Linux下的:
1 #include <stdio.h>
2 #include <locale.h>
3 #include <stdlib.h>
4 #include "ConvertUTF.h"
5
6 int main(int argc, char* argv[])
7 {
8
9 ConversionResult result = sourceIllegal;
10 UTF16 utf16_buf[3] = {0};
11 utf16_buf[0] = 0x4e2d;
12 utf16_buf[1] = 0x6587;
13 utf16_buf[2] = 0;
14 UTF16 *utf16Start = utf16_buf;
15 UTF8 utf8_buf[12] = {0};
16 UTF8* utf8Start = utf8_buf;
17
18 // If you want to test next line, you can't get anything but ???
19 // wprintf("%s\n", utf16_buf);
20
21 result = ConvertUTF16toUTF8((const UTF16 **) &utf16Start, &(utf16_buf[3]), &utf8Start, &(utf8_buf[12]), strictConversion);
22 switch (result) {
23 default: fprintf(stderr, "Test02B fatal error: result %d for input %08x\n", result, utf16_buf[0]); exit(1);
24 case conversionOK: break;
25 case sourceExhausted: printf("sourceExhausted\t"); exit(0);
26 case targetExhausted: printf("targetExhausted\t"); exit(0);
27 case sourceIllegal: printf("sourceIllegal\t"); exit(0);
28 }
29
30 int i = 0;
31 for(; i < 12; ++i)
32 {
33 printf("%x ", utf8_buf[i]);
34 }
35
36 printf("\n");
37
38 printf("%s\n", (char*)utf8_buf);
39 bzero(utf16_buf, sizeof(utf16_buf));
40
41 UTF8* utf8End = utf8Start;
42 utf8Start = utf8_buf;
43 utf16Start = utf16_buf;
44
45 result = ConvertUTF8toUTF16((const UTF8 **) &utf8Start, utf8End, &utf16Start, &(utf16_buf[3]), strictConversion);
46 switch (result) {
47 default: fprintf(stderr, "Test02B fatal error: result %d for input %08x\n", result, utf16_buf[0]); exit(1);
48 case conversionOK: break;
49 case sourceExhausted: printf("sourceExhausted\t"); exit(0);
50 case targetExhausted: printf("targetExhausted\t"); exit(0);
51 case sourceIllegal: printf("sourceIllegal\t"); exit(0);
52 }
53
54 // If you want to test next line, you can't get anything
55 wprintf("%s\n", utf16_buf);
56
57 return 0;
58 }
59
编缉推荐阅读以下文章
版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明!