dart base64的编码与解码

Posted zhaofeis

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
}

以上是关于dart base64的编码与解码的主要内容,如果未能解决你的问题,请参考以下文章

关于Dart中字符串编码/解码的困惑

使用OpenSSL进行Base64编码和解码

base64编码与解码

前端base64编码与解码

Go语言实现Base64Base58编码与解码

base64编码与base64解码