1

如何捕获为流程创建的流?请参阅有关 Process 的有限 Fantom 文档:http: //fantom.org/doc/sys/Process

class Ipconfig {

   Void main() {
     proc := Process()
     proc.command = Str["ipconfig"]
     proc.in = Env.cur().in
     proc.run
     proc.join
     test := proc.in.readAllLines
     echo(test)
   }
 }
4

1 回答 1

1

看起来你正在混淆你的输入和输出。您想要设置和捕获进程的输出,如下所示:

buf := Buf()

Process() {
    command = Str["ipconfig"]
    out = buf.out 
}.run.join

outStr := buf.flip.readAllStr
echo(outStr)
于 2016-12-08T22:04:46.670 回答