我有一个文件路径字符串,例如
path = /data/user/0/com.digitalpathshalabd.school/cache/Shaiful_Islam.docx
现在我想将文件转换成base64
我怎么能做到这一点?
我有一个文件路径字符串,例如
path = /data/user/0/com.digitalpathshalabd.school/cache/Shaiful_Islam.docx
现在我想将文件转换成base64
我怎么能做到这一点?
最后我想出了一个解决方案。问题是我们必须在转换之前从路径中获取实际文件。
import 'dart:convert';
import 'dart:io';
class FileConverter {
static String getBase64FormateFile(String path) {
File file = File(path);
print('File is = ' + file.toString());
List<int> fileInByte = file.readAsBytesSync();
String fileInBase64 = base64Encode(fileInByte);
return fileInBase64;
}
}