我正在使用渡槽网络API框架来支持我的Flutter应用程序。在我的api后端中,我需要连接本地网络套接字服务。我的问题是我无法返回确切的字符串(在tr中)。 S o,如何在Dart中将字符串转换为utf8?
示例:
@httpGet
Future<Response> getLogin() async {
Socket.connect('192.168.1.22’, 1024).then((socket) async {
socket.listen((data) {
// Expected return is: 1:_:2:_:175997:_:NİYAZİ TOROS
print(new String.fromCharCodes(data).trim());
xResult = new String.fromCharCodes(data).trim();
print("xResult: $xResult");
}, onDone: () {
print("Done");
socket.destroy();
});
socket.write('Q101:_:49785:_:x\r\n');
});
return new Response.ok(xResult);
}
返回不是TR-tr语言格式。
返回文字如下: 1::2::175997:_:NÝYAZÝTOROS
正确的必须是: 1::2::175997:_:NİYAZİTOROS
更新:
xResult = new String.fromCharCodes(data).trim();
print(xResult);
responseBody = xResult.transform(utf8.decoder);
print(responseBody);
在尝试转换为UTF8后,我可以打印xResult
,但是不能打印responseBody
答案 0 :(得分:11)
utf8.decode(stringData.runes.toList()),
这可以用来使UTF-8抖动。这里的stringData字符串将包含具有UTF-8内容的必要数据。
答案 1 :(得分:6)
import 'dart:convert' show utf8;
var encoded = utf8.encode('some text');
vare decoded = utf8.decode(encoded);
另请参阅https://api.dartlang.org/stable/1.24.3/dart-convert/UTF8-constant.html
还有用于流的编码器和解码器
File.openRead().transform(utf8.decoder).
另请参阅https://www.dartlang.org/articles/libraries/converters-and-codecs#converter