当前位置 : 主页 > 编程语言 > java >

调用cmd,执行dos命令

来源:互联网 收集:自由互联 发布时间:2022-09-02
2,主要代码 private void btn1_Click(object sender, EventArgs e) { Process exeCommand = new Process(); exeCommand.StartInfo.FileName = "cmd"; exeCommand.StartInfo.RedirectStandardInput = true; exeCommand.StartInfo.RedirectStandardOutput


 

 

2,主要代码

    

private void btn1_Click(object sender, EventArgs e)
{ Process exeCommand = new Process();
exeCommand.StartInfo.FileName = "cmd";
exeCommand.StartInfo.RedirectStandardInput = true;
exeCommand.StartInfo.RedirectStandardOutput = true;
exeCommand.StartInfo.CreateNoWindow = true;
exeCommand.StartInfo.UseShellExecute = false;
exeCommand.Start();
exeCommand.StandardInput.WriteLine(this.txtCommand.Text);
exeCommand.StandardInput.WriteLine("exit");
string info = exeCommand.StandardOutput.ReadToEnd();
this.txtMessage.AppendText(info);
}
上一篇:IIS动态创建虚拟目录(转)
下一篇:没有了
网友评论