gpt4 book ai didi

dart - 在 Dart 中将 List 转换为字符串?

转载 作者:行者123 更新时间:2023-12-04 02:46:10 25 4
gpt4 key购买 nike

我读过一个文件,并得到了一个整数列表。对于我的大部分工作,这就是我想要得到的,但在一种情况下,我还需要转换一些 List<int>String .

更具体地说,我想用 UTF-8 对字符串进行编码。

这是我刚刚尝试过的:

var decoder = new Utf8Decoder(figures);
print(decoder.decodeRest());

但我得到的只是一个整数列表。

最佳答案

String.fromCharCodes(List<int> charCodes)可能就是你要找的。

  List<int> charCodes = const [97, 98, 99, 100];
print(new String.fromCharCodes(charCodes));

关于dart - 在 Dart 中将 List<int> 转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11710459/

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