gpt4 book ai didi

C# utf8-encoding bytearray 超出范围

转载 作者:行者123 更新时间:2023-11-30 21:47:56 25 4
gpt4 key购买 nike

我有以下问题:如果 String包含 charASCII 中不知道,它使用 63。

因此我将编码更改为 UTF8 , 但我知道 char可以有 length两个bytes ,所以我得到了一个超出范围的错误。
我该如何解决这个问题?

System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();

byte[] baInput = enc.GetBytes(strInput);

// Split byte array (6 Byte) in date (days) and time (ms) parts
byte[] baMsec = new byte[4];
byte[] baDays = new byte[2];

for (int i = 0; i < baInput.Length; i++)
{
if (4 > i)
{
baMsec[i] = baInput[i];
}
else
{
baDays[i - 4] = baInput[i];
}
}

最佳答案

似乎遇到的问题是在使用 UTF8 时您知道字符数,但不知道字节数。要解决这个问题,您可以使用:

byte[] baMsec = Encoding.UTF8.GetBytes(strInput.SubString(0, 4));
byte[] baDays = Encoding.UTF8.GetBytes(strInput.SubString(4));

关于C# utf8-encoding bytearray 超出范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38047514/

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