欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在asp.net(c#)下实现调用cmd的方法

程序员文章站 2024-03-07 12:33:45
下面以ping 为例用到命名空间system.diagnostics; system.diagnostics 命名空间 包含了能够与系统进程 事件日志 和性能计数器进行交互...
下面以ping 为例用到命名空间system.diagnostics;
system.diagnostics 命名空间 包含了能够与系统进程 事件日志 和性能计数器进行交互的类 一般用于帮助诊断和调试应用程序 例如 debug类用于帮组调试代码 process类能够控制进程访问 trace类能够跟踪代码的执行情况
process 用于操作本地或者远程进程打访问 通过process 可以在托管环境下很容易的操作对外部进程的启动或者停止 。
复制代码 代码如下:

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.diagnostics;
namespace testequal
{
class program
{
static void main(string[] args)
{
process myprocess = new process();
myprocess.startinfo.filename = "iexplore.exe";
myprocess.startinfo.arguments = "http://www.baidu.com";
myprocess.start();
}

}
}

必须设置相应的filename和arguments属性
下面以ping为例
代码如下:
复制代码 代码如下:

string hostname = "http://www.baidu.com"; //或者这里是ip等;
process prc=new process();
prc.startinfo.filename="cmd.exe";
prc.startinfo.useshellexecute=false;
prc.startinfo.redirectstandardinput = true;
prc.startinfo.redirectstandardoutput = true;
prc.startinfo.redirectstandarderror = true;
prc.startinfo.createnowindow = false;
prc.start();
prc.standardinput.writeline("ping " + hostname);
prc.standardinput.close();
response.write(prc.standardoutput.readtoend());

这里还可以调用很多命令自己可以研究下