Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想访问特定文件的每一行以在网页上显示其统计信息。我应该使用什么步骤或代码来解决这个问题。
如果要按顺序访问文件的行,可以使用以下代码段:
import 'dart:io'; main() { new File("path/to/file").openRead() .transform(new StringDecoder()) .transform(new LineTransformer()) .listen(print); // Replace 'print' with your action. }
如果你需要随机访问,你应该看看File.open
要创建网络服务器,请查看此处