本文介绍了如何读取 M3 Dart 上的控制台输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 M3 中,像 StringInputStream 这样的类被替换为 Stream.如何读取服务器应用程序上的 stdin 输入?
With M3 the classes like StringInputStream are replaced with Stream. How can I read stdin input on a server application?
推荐答案
试试这个:
import 'dart:io';
import 'dart:async';
void main() {
print("Please, enter a line
");
Stream cmdLine = stdin
.transform(new StringDecoder())
.transform(new LineTransformer());
StreamSubscription cmdSubscription = cmdLine.listen(
(line) => print('Entered line: $line '),
onDone: () => print(' finished'),
onError: (e) => /* Error on input. */);
}
这篇关于如何读取 M3 Dart 上的控制台输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!