以行的方式读取文件

Android社区 收藏文章

Use the File readAsString() method to read a file as a string.

import 'dart:io';

main() async {
  var contents = await new File('file.txt').readAsString();
  print(contents);
}
相关标签

扫一扫

在手机上阅读