好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

把字符串写到文件中

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");
} 

查看更多关于把字符串写到文件中的详细内容...

  阅读:60次