0

我有一个 c# 代码来执行批处理文件。我想在命令提示符下显示 bat 文件中的信息。这是我新编辑的 C# 代码:

namespace CheckTime
{
class Program
{
    static void Main(string[] args)
    {
        Program Obj = new Program();

        int greetingId;
        int hourNow = System.DateTime.Now.Hour;

        if (hourNow < 12)
            greetingId = 0;
        else if (hourNow < 18)
            greetingId = 1;
        else
            greetingId = 2;
        System.Environment.ExitCode = greetingId;
        Obj.StartBatchFile(greetingId);


    }

   void StartBatchFile(int Gretting)
    {
        var p = new Process();
        p.StartInfo.FileName = "cmd.exe";
        p.StartInfo.Arguments = string.Format(@"/C D:\Nimit Joshi\Visual Studio 2013\CheckTime\CheckTime\Demo1.bat {0}", Gretting);            
        p.OutputDataReceived += ConsumeData;


        try
        {
            p.Start();
            p.WaitForExit();
        }
        finally
        {
            p.OutputDataReceived -= ConsumeData;
        }
    }

    private void ConsumeData(object sender, DataReceivedEventArgs e)
    {
        Console.WriteLine(e.Data);
    }

 }

}

以下是我的 Demo1.bat 文件:

@echo off
:: Use %1 to get the first command line parameter
goto Greeting%1%

:Greeting
echo You have no entered a greeting.
goto end

:Greeting0
echo Good Morning
goto end

:Greeting1
echo Good Afternoon
goto end

:Greeting2
echo Good Evening
goto end

:end

它总是显示你没有输入问候语

4

2 回答 2

4

使用Process.OutputStream或 监听Process.OutputDataReceived事件。

例子:

private void ConsumeData(object sendingProcess, 
            DataReceivedEventArgs outLine)
{
    if(!string.IsNullOrWhiteSpace(outLine.Data))
        Console.WriteLine(outLine.Data);
}

p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.OutputDataReceived += ConsumeData;

try
{
    p.Start();
    p.BeginOutputReadLine();
    p.WaitForExit();
}
finally
{
    p.OutputDataReceived -= ConsumeData;
}

应重写批处理文件,以免导致无限循环。

@echo off
:: Use %1 to get the first command line parameter
goto Greeting%1%

:Greeting
echo You have no entered a greeting.
goto end

:Greeting0
echo Good Morning
goto end

:Greeting1
echo Good Afternoon
goto end

:Greeting2
echo Good Evening
goto end

:end

C#

void StartBatchFile(int arg)
{
    var p = new Process();
    p.StartInfo.FileName = "cmd.exe";
    p.StartInfo.Arguments = string.Format(@"/C C:\temp\demo.bat {0}", arg);
    p.StartInfo.RedirectStandardOutput = true;
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.CreateNoWindow = true;
    p.OutputDataReceived += ConsumeData;

    try
    {
        p.Start();
        p.BeginOutputReadLine();
        p.WaitForExit();
    }
    finally
    {
        p.OutputDataReceived -= ConsumeData;
    }
}
于 2013-10-28T12:29:40.100 回答
0

return(即退出你的程序)在你打电话之前anotherMethod()

这很好,否则你会有一个无限循环的.exe盯着.bat.

于 2013-10-28T12:41:23.307 回答