dart base64的编码与解码
import ‘dart:convert‘; void main() { String str = "encode str"; // base64编码 List<int> bytes = utf8.encode(str); String encodedStr = base64Encode(bytes); print(encodedStr); // base64解码 List<int> bytes2 = base64Decode(encodedStr); String decodeStr = String.fromCharCodes(bytes2); print(decodeStr); }
相关推荐
凉白开 2020-07-19
pythonjw 2020-11-17
hedongli 2020-09-01
浪味仙 2020-08-17
IT兄弟团 2020-08-01
kjh00abc 2020-07-08
Skyline 2020-06-28
苦咖啡flask 2020-06-18
半纸药笺 2020-06-14
chenhaimeimeng 2020-06-13
JF0 2020-06-13
逍遥友 2020-06-02
kyelu 2020-06-02
northwindx 2020-05-31
tengyuan 2020-05-30
singer 2020-05-30
GreatZhou 2020-05-28
coolhty 2020-05-20
Phoenixor 2020-05-19