把字符串写到文件中

Android社区 收藏文章

Use the File object’s writeAsString() method to write a string to a file. After writing the string, the method closes the file.

import 'dart:io';

main() async {
  final filename = 'file.txt';
  var file = await new File(filename).writeAsString('some content');
  print("Content written to $file");
}
相关标签

扫一扫

在手机上阅读