Use the File readAsBytes() method to read file contents as bytes.
import 'dart:io';
import 'package:crypto/crypto.dart';
main() async {
var bytes = await new File('file.txt').readAsBytes();
// Do something with the bytes. For example, convert to base64.
String base64 = CryptoUtils.bytesToBase64(bytes);
print(base64);
}
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did129456