web-dev-qa-db-ja.com

Dartで文字列をutf8に変換するにはどうすればよいですか?

フラッターアプリをサポートするために、Aqueduct Web APIフレームワークを使用しています。 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

更新:

  1. xResult = new String.fromCharCodes(data).trim();
  2. print(xResult);
  3. responseBody = xResult.transform(utf8.decoder);
  4. print(responseBody);

xResultは印刷できますが、UTF8への変換を試みた後にresponseBodyを印刷できません

5
user9239214
import 'Dart:convert' show utf8;

var encoded = utf8.encode('Lorem ipsum dolor sit amet, consetetur...');
var 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

13