我正在尝试将 UTF-16 字符串(从 spidermonkey 19 中的 JSString 获得)转换为 UTF-8 字符串。我认为转换后的字符串没问题,但由于某种原因,转换例程为每个 unicode(非 ascii)字符添加了两个额外的字节。我很确定我做错了什么,我尝试了不同的编码但没有好的结果。这就是我现在得到的:
// UTF-16 string "áéíóúñ aeiou", this is the string being converted
// (you can find "aeiou" after \x20\x00, where \x61\x00 is "a")
\xC3\x00\xA1\x00\xC3\x00\xA9\x00\xC3\x00\xAD\x00\xC3\x00\xB3\x00\xC3\x00\xBA\x00\xC3\x00\xB1\x00\x20\x00\x61\x00\x65\x00\x69\x00\x6F\x00\x75\x00\x6E\x00
// UTF-8 string, test string, taken from:
// const char* cmp = "áéíóúñ aeiou"
// This is the result I'm looking for.
\xc3\xa1\xc3\xa9\xc3\xad\xc3\xb3\xc3\xba\xc3\xb1 aeiou
// UTF-8 string I'm getting after iconv(utf16, utf8)
\xc3\x83\xc2\xa1\xc3\x83\xc2\xa9\xc3\x83\xc2\xad\xc3\x83\xc2\xb3\xc3\x83\xc2\xba\xc3\x83\xc2\xb1 aeioun
如您所见,每个非 ascii 字符之间有两个额外的字节 (\x83\xc2)。有谁知道这是为什么?
这是我的转换程序:
shared_ptr<char> convertToUTF8(char* utf16string, size_t len) {
iconv_t cd = iconv_open("UTF-8", "UTF-16LE");
char* utf8;
size_t utf8len;
utf8len = len;
utf8 = (char *)calloc(utf8len, 1);
shared_ptr<char> outptr(utf8);
size_t converted = iconv(cd, &utf16string, &len, &utf8, &utf8len);
if (converted == (size_t)-1) {
fprintf(stderr, "iconv failed\n");
switch (errno) {
case EILSEQ:
fprintf(stderr, "Invalid multibyte sequence.\n");
break;
case EINVAL:
fprintf(stderr, "Incomplete multibyte sequence.\n");
break;
case E2BIG:
fprintf(stderr, "No more room (iconv).\n");
break;
default:
fprintf(stderr, "Error: %s.\n", strerror(errno));
break;
}
outptr = NULL;
}
iconv_close(cd);
assert(outptr);
return outptr;
}
我也尝试了这个其他问题的解决方案,但我得到了完全相同的结果。任何想法为什么 iconv 添加额外的两个字节?如何将结果与手动创建的 utf-8 字符串匹配?
编辑:测试字符串的固定描述