我正在使用以下代码
System::Diagnostics::Process^ p = gcnew System::Diagnostics::Process();
p->StartInfo->FileName = "tnccmd.exe";
p->StartInfo->UseShellExecute = false;
p->StartInfo->RedirectStandardInput = true;
p->StartInfo->RedirectStandardOutput = true;
p->Start();
System::IO::StreamWriter^ tnc_stdin = p->StandardInput;
System::IO::StreamReader^ tnc_stdout = p->StandardOutput;
tnc_stdin->WriteLine("connect i 127.0.0.1");
String^ prg_output = tnc_stdout->ReadToEnd();
我的问题是我无法stdout
正确阅读。但是,我可以轻松地写入stdin
,但现在我正在尝试实现一些错误检查代码,但它不起作用。
我正在使用的程序似乎没有写入,stdout
即使它是在命令行中运行的。我可以重现默认情况下bug
附带ftp.exe
的。Windows XP
如果->FileName
用ftp.exe
命令提示符更改ftp.exe
通常给出的ftp>
将不会显示在prg_output
.
现在我知道提示必须使用某种类型,windows shell curses
我可能会混淆问题。
connect i 127.0.0.1
通常在我应该收到的指令之后,connecting to 127.0.0.1...
但我什么也没收到。
关于我做错了什么的任何提示?还有另一种stdout
我不知道的吗?
编辑
我不能使用参数,因为我有多行要写,就像ftp.exe
. 此外,ftp.exe
当您键入 dir 之类的命令时会输出。至少当您编写未知命令时它会输出,它会抱怨Invalid command
.