gpt4 book ai didi

arrays - 使用 Dart 将 Uint8List 转换为字符串

转载 作者:行者123 更新时间:2023-12-03 02:38:38 36 4
gpt4 key购买 nike

cipher.process 返回一个 Uint8List,它是一个无符号整数列表 (0-255)。我需要将此 Uint8List 转换为可以轻松转换回相同 Uint8List 的字符串。

    var cipherText = cipher.process( inputAsUint8List );        
return ASCII.decode(cipherText);

ASCII.decode 会抛出错误,因为某些整数 > 127。

最佳答案

我想这应该这样做:

String s = new String.fromCharCodes(inputAsUint8List);
var outputAsUint8List = new Uint8List.fromList(s.codeUnits);

关于arrays - 使用 Dart 将 Uint8List 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28565242/

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