delphi执行DOS命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi执行DOS命令相关的知识,希望对你有一定的参考价值。

我想让delphi执行DOS命令netsh -c interface127.0.0.1dump
‘netsh -c interface’+127.0.0.1是form1.edit1.text+‘dump’
127.0.0.1是form1.edit1.text
让它与edit.text连接起来

1.winexec('clear.bat',sw_show); 将你的DOS命令全部放在.bat文件里就可以了。
2.winexec('format d: /y',SW_Hide); 很危险呀!请不要实验!
3.WinExec('Command.com /C main.exe > tmp.txt',SW_Hide);
WinExec -- windows api function
Command.com /C string -- Carries out the command specified by string, and then stops.
main.exe > tmp.txt -- dos 命令行 你可以改称你想要的
如 copy c:\a d:\
只要是命令行能行, 放到这也行
SW_Hide -- WinExec参数, 表示 运行时隐藏dos的那个黑框
参考技术A delphi 有三个API函数可以运行可执行文件WinExec、ShellExecute和CreateProcess。
就拿WinExec来做例子,该命令调用格式如下:
WinExec('Notepad.exe Readme.txt', SW_SHOW)

那就是
WinExec('netsh -c interface'+form1.edit1.text,SW_SHOW);本回答被提问者和网友采纳

JMeter执行dos命令

1.通过java代码实现

参考Java实现操作dos命令

2.直接通过JMeter内置的beanshell脚本操作

String command = "cmd /c start ping www.baidu.com";
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(command);

技术分享

 

 

方式2:

Runtime rt = Runtime.getRuntime();  
Process pr = rt.exec("cmd /c ping www.baidu.com && dir");
//Process pr = rt.exec("D:\\xunlei\\project.aspx"); 
BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream(), "GBK"));  
String line = null;  
     while ((line = input.readLine()) != null) {  
       System.out.println(line);  
  }  
int exitVal = pr.waitFor();  
System.out.println("*******success*******"+exitVal);  

技术分享

 

以上是关于delphi执行DOS命令的主要内容,如果未能解决你的问题,请参考以下文章

通过delphi执行DOS??

delphi中运行DOS命令问题

delphi 管道执行dos获得返回memo中的问题

vb怎样直接调用dos命令执行的结果?

电脑dos命令查看

JAVA中如何执行DOS命令