.Net执行cmd命令

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Diagnostics;

namespace WebForm
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Response.Write(ExeCommand("ping www.126.com"));
        }

public string ExeCommand(string commandText)
        {
            Process p = new Process();
            p.StartInfo.FileName = "cmd.exe";
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
            string strOutput = null;
            try
            {
                p.Start();
                p.StandardInput.WriteLine(commandText);
                p.StandardInput.WriteLine("exit");
                strOutput = p.StandardOutput.ReadToEnd();
                p.WaitForExit();
                p.Close();
            }
            catch (Exception e)
            {
                strOutput = e.Message;
            }
            return strOutput;
        }
    }
}

WaitForExit

程序里我使用Process类启动命令行,执行批处理文件 ‘Create.cmd‘(当我手工将此文件拖入命令行执行时,一切正常)。C#程序代码类似如下,其中batchFilePath变量为批处理文件全路径:

Code

m_BasicDataProc = new Process();

m_BasicDataProc.StartInfo.FileName = "cmd.exe";

m_BasicDataProc.StartInfo.CreateNoWindow = false;

m_BasicDataProc.StartInfo.UseShellExecute = false;

m_BasicDataProc.StartInfo.RedirectStandardOutput = true;

m_BasicDataProc.StartInfo.RedirectStandardInput = true;

m_BasicDataProc.StartInfo.WorkingDirectory = Path.GetDirectoryName(batchFilePath);

m_BasicDataProc.Start();

string batchFileName = Path.GetFileName(batchFilePath);

StreamWriter inputStream = m_BasicDataProc.StandardInput;

inputStream.WriteLine(batchFileName);

inputStream.Close();

m_BasicDataProc.WaitForExit();

m_BasicDataProc.EnableRaisingEvents = true;

批处理文件‘Create.cmd‘调用‘sqlplus‘来执行若干个sql文件:

//===================================================

echo Tables on level 0:

if exist InstallScripts\Create01.sql (

echo bas

sqlplus %1/%[email protected]%3 @InstallScripts\Create01.sql | %HideSQLPlusRows%

REM > Logs\Create_%1.txt

)

if exist InstallScripts\Create02.sql (

......

//===================================================

出现的问题是程序运行到‘m_BasicDataProc.WaitForExit();‘这一行时就阴塞不动.

搞 了两天,最后发现原因是出现了死锁。由于标准输出流被重定向,而Process.StandardOutput的缓冲大小是有限制的(据说是4k),所以 当缓冲满了的时候(执行上面的批处理文件有很多的输出),子进程(cmd.exe)会等待主进程(C# App)读取并释放此缓冲,而主进程由于调用了WaitForExit()方法,则会一进等待子进程退出,最后形成死锁。

了解了原因后,有3种方法可以解决问题:

1)修改批处理文件,在调用sqlplus时将输出指定到一个log文件,这样被生定向到StandardOutput中的内容相对就少,不容易造成问题:

//===================================================

echo Tables on level 0:

if exist InstallScripts\Create01.sql (

echo bas

sqlplus %1/%[email protected]%3 @InstallScripts\Create01.sql | %HideSQLPlusRows% > Logs\Create_%1.txt

)

......

//===================================================

2)修改C#代码,将‘m_BasicDataProc.StartInfo.RedirectStandardOutput = false;‘,这样所有的输出会在命令行屏幕上直接输出,不会重定向到标准输出流中。

3) 修改C#代码,在‘m_BasicDataProc.WaitForExit();‘前添加 ‘m_BasicDataProc.BeginOutputReadLine();‘ 或 ‘m_BasicDataProc.StandardOutput.ReadToEnd();‘,通过读取输出流,以便释放相应的缓冲。

.Net执行cmd命令

时间: 2024-12-21 12:04:54

.Net执行cmd命令的相关文章

Atitit.执行cmd 命令行 php

Atitit.执行cmd 命令行 php 1. 执行cmd 命令行,调用系统命令的基础 1 1.1. 实际执行模式 1 1.2. 空格的问题 1 1.3. 中文路径的问题,程序文件读取编码设置 1 1.4. 回显乱码 2 2. exec,system等函数调用系统命令 2 3. php.ini,关掉安全模式safe_mode = off 3 4. 参考 3 1. 执行cmd 命令行,调用系统命令的基础 1.1. 实际执行模式 Processmonitor 检查.得到.. PID: 115372,

JAVA之执行cmd命令

感言在前:时隔好久没有更新博客园了,忙东忙西也没忙出个什么之所以然来.回首过去的几个月,只能用“疲倦”两个字来形容,时间飞逝地很快,有苦也有乐,有酸也有甜. 好了,矫情的话就说到这.百忙之中,我还是记得抽些时间来更博. class ExecCmd { public static void main(String args[]) { Runtime run = Runtime.getRuntime(); Process process = null; try { process = run.exe

java执行cmd命令并获取输出结果

1.java执行cmd命令并获取输出结果 1 import java.io.BufferedReader; 2 import java.io.InputStreamReader; 3 4 import org.apache.commons.lang3.text.StrBuilder; 5 6 /** 7 * 8 * @author user1 9 */ 10 public class DeleteProgram { 11 public static void run() { 12 Runtime

C# 执行CMD命令的方法

/// <summary> /// 执行CMD命令 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string ExeCmd(string str) { try { //string str = Console.ReadLine(); System.Diagnostics.Process p =

Python利用多线程定时执行cmd命令关机

利用os模块可以执行cmd命令,利用这一点可以实现定时关机,然而在等待关机的过程中也不能啥都不干,于是多线程派上了用场. #! /usr/bin/env python #coding=utf-8 #这里需要引入三个模块 import time, os, sched, easygui, thread # 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数 # 第二个参数以某种人为的方式衡量时间 schedule = sched.scheduler(time.time, time.sle

java执行cmd命令

从网上找的java执行cmd命令的文章,摘抄一段. java的Runtime.getRuntime().exec(commandStr)可以调用执行cmd指令. cmd /c dir 是执行完dir命令后封闭命令窗口. cmd /k dir 是执行完dir命令后不封闭命令窗口. cmd /c start dir 会打开一个新窗口后执行dir指令,原窗口会封闭. cmd /k start dir 会打开一个新窗口后执行dir指令,原窗口不会封闭. 可以用cmd / 查看帮助信息. ★CMD命令★1

C# 执行CMD 命令

/// <summary> /// 执行CMD 命令 /// </summary> /// <param name="strCommand">命令串</param> /// <returns></returns> public static string RunCommand(string strCommand) { Process process = new Process(); process.StartInf

执行cmd命令

说明:主要代码是从 http://tieba.baidu.com/p/3214053453 抄录的 Demo下载:https://git.oschina.net/xieyimo9/zhixingcmdmingling.git 主要思路: { 建立两条管道,一条负责从程序(进程)往新建立的cmd进程传信息,另一条则反过来,从cmd进程传信息给程序 程序通过 WriteIn 写入,cmd进程 从 ReadIn 读到程序写入的信息 cmd进程 的返回值或错误通过 WriteOut 写入,程序从 Rea

C#执行cmd命令实现电脑关机

C#实现执行CMD命令,实现电脑立即/定时关机 该篇博文主要介绍个人写的一款实现立即与定时关机的软件: 主要是通过调用window下的cmd.exe,然后执行关机相关的cmd命令,实现电脑的立即和定时关机,具体实现如下. 首先是打开系统自带的cmd.exe: <span style="white-space:pre"> </span> Process process = new Process(); process.StartInfo.FileName = &q