gpt4 book ai didi

c# - 为什么 UTF8Encoding.GetBytes 不发出字节顺序标记?

转载 作者:可可西里 更新时间:2023-11-01 08:02:51 26 4
gpt4 key购买 nike

这个片段说明了一切:-)

UTF8Encoding enc = new UTF8Encoding(true/*include Byte Order Mark*/);
byte[] data = enc.GetBytes("a");
// data has length 1.
// I expected the BOM to be included. What's up?

最佳答案

您不希望它用于每次 GetBytes 调用,否则您将无法(比方说)一次写入一个文件一行。

通过使用 GetPreamble 公开它,调用者可以在适当的点插入前导码(即在他们的数据的开头)。不过,我同意文档可能会更清晰。

关于c# - 为什么 UTF8Encoding.GetBytes 不发出字节顺序标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/420867/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com