[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);

以上
就是此次分享~

關於站主

Shiro

因為興趣無限擴張,一直很猶豫要不要寫一個很雜的Blog,後來還是這麼做了。

聯絡:shiro050102✦gmail.com  ✦請自行更換成@