我正在使用 ICU 的 ustdio 函数将 UnicodeString 对象写入一系列编码的文件,但它似乎没有预先添加 BOM。
我的代码:
void write_file(const char* filename, UnicodeString &str) {
UFILE* f = u_fopen(filename, "w", NULL, "UTF-16 LE");
u_file_write(str.getTerminatedBuffer(), str.length() + 1, f);
u_fclose(f);
}
int _tmain(int argc, _TCHAR* argv[])
{
UnicodeString str(L"ΠαρθένωνΗ");
write_file("test.txt", str);
return 0;
}
当我将 LE 更改为 BE 时,文件编码确实会交换,但是没有 BOM,十六进制编辑器中的输出文件是:
A0 03 B1 03 C1 03 B8 03 AD 03 BD 03 C9 03 BD 03 97 03 00 00
注意:如果我将代码页设置为“UTF-16”,则会有一个 BOM,但是一旦我手动指定字节序,它就会消失。
或者,有没有办法可以将 UnicodeString 写入带有 BOM 的文件?