delphi 管道执行dos获得返回memo中的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 管道执行dos获得返回memo中的问题相关的知识,希望对你有一定的参考价值。
基本代码有了,也测试执行了,但是存在如下问题。 我需要运行Proxmark3.exe,运行这个程序后,会从dos提示符,进入到proxmark3->这个提示符状态,然后可以继续输入命令,得到返回结果。我目前的代码,每执行一次,都会创建一个 proxmark3.exe进程, 执行的命令多了会创建很多个。能不能想办法只创建一个,我输入的命令都是作为参数 来提交给已经创建的这个管道中的proxmark3.exe进程来执行,并返回执行结果。
百度知道不允许上传附件?
如何获得dos输出。在delphi2009与vista
【中文标题】如何获得dos输出。在delphi2009与vista【英文标题】:How to get the dos output. In delphi2009 with vista 【发布时间】:2010-06-04 03:11:23 【问题描述】:我过去常常使用 delphi 获取 dos 输出。 是什么导致http://delphi.about.com/cs/adptips2001/a/bltip0201_2.htm 中的代码无法在 vista 上与 delphi2009 一起使用?但它适用于XP中的D7。我不知道要修改哪个部分才能使其工作。
【问题讨论】:
【参考方案1】:DelphiDabbler has a solution,虽然我没有亲自测试过:
function GetDosOutput(CommandLine: string; Work: string = 'C:\'): string;
var
SA: TSecurityAttributes;
SI: TStartupInfo;
PI: TProcessInformation;
StdOutPipeRead, StdOutPipeWrite: THandle;
WasOK: Boolean;
Buffer: array[0..255] of AnsiChar;
BytesRead: Cardinal;
WorkDir: string;
Handle: Boolean;
begin
Result := '';
with SA do begin
nLength := SizeOf(SA);
bInheritHandle := True;
lpSecurityDescriptor := nil;
end;
CreatePipe(StdOutPipeRead, StdOutPipeWrite, @SA, 0);
try
with SI do
begin
FillChar(SI, SizeOf(SI), 0);
cb := SizeOf(SI);
dwFlags := STARTF_USESHOWWINDOW or STARTF_USESTDHANDLES;
wShowWindow := SW_HIDE;
hStdInput := GetStdHandle(STD_INPUT_HANDLE); // don't redirect stdin
hStdOutput := StdOutPipeWrite;
hStdError := StdOutPipeWrite;
end;
WorkDir := Work;
Handle := CreateProcess(nil, PChar('cmd.exe /C ' + CommandLine),
nil, nil, True, 0, nil,
PChar(WorkDir), SI, PI);
CloseHandle(StdOutPipeWrite);
if Handle then
try
repeat
WasOK := ReadFile(StdOutPipeRead, Buffer, 255, BytesRead, nil);
if BytesRead > 0 then
begin
Buffer[BytesRead] := #0;
Result := Result + Buffer;
end;
until not WasOK or (BytesRead = 0);
WaitForSingleObject(PI.hProcess, INFINITE);
finally
CloseHandle(PI.hThread);
CloseHandle(PI.hProcess);
end;
finally
CloseHandle(StdOutPipeRead);
end;
end;
【讨论】:
【参考方案2】:Torry 上也有一个解决方案: http://www.swissdelphicenter.ch/torry/showcode.php?id=683
【讨论】:
以上是关于delphi 管道执行dos获得返回memo中的问题的主要内容,如果未能解决你的问题,请参考以下文章