[Flutter] bytes轉String處理 及反推回去
實作設備連接時回拋bytes
需要顯示String要經過轉換
var testInput = [72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100];
String okWord = utf8.decode(testInput);
print(okWord);
結果就會印出 Hello world
反之、如果要使用 String轉回bytes可參考下面方式
String testInput = 'Hello world';
List<int> bytes = utf8.encode(testInput);
print(bytes);
以上
就是此次分享~