11

我想执行一个批处理命令并将输出保存在一个字符串中,但我只能执行该文件并且无法将内容保存在一个字符串中。

批处理文件:

@echo 关闭

"C:\lmxendutil.exe" -licstatxml -host serv005 -port 6200>C:\Temp\HW_Lic_XML.xml 记事本 C:\Temp\HW_Lic_XML.xml

C#代码:

private void btnShowLicstate_Click(object sender, EventArgs e)
{
     string command = "'C:\\lmxendutil.exe' -licstatxml -host lwserv005 -port 6200";

     txtOutput.Text = ExecuteCommand(command);
}

static string ExecuteCommand(string command)
{
     int exitCode;
     ProcessStartInfo processInfo;
     Process process;

     processInfo = new ProcessStartInfo("cmd.exe", "/c " + command);
     processInfo.CreateNoWindow = true;
     processInfo.UseShellExecute = false;
     // *** Redirect the output ***
     processInfo.RedirectStandardError = true;
     processInfo.RedirectStandardOutput = true;

     process = Process.Start(processInfo);
     process.WaitForExit();

     // *** Read the streams ***
     string output = process.StandardOutput.ReadToEnd();
     string error = process.StandardError.ReadToEnd();

     exitCode = process.ExitCode;

     process.Close();

     return output; 
}

我想要字符串中的输出并直接在 C# 中执行此操作而无需批处理文件,这可能吗?

4

2 回答 2

9

不需要使用“CMD.exe”来执行命令行应用程序或检索输出,您可以直接使用“lmxendutil.exe”。

试试这个:

processInfo = new ProcessStartInfo();
processInfo.FileName  = "C:\\lmxendutil.exe";
processInfo.Arguments = "-licstatxml -host serv005 -port 6200";
//etc...

进行修改以在此处使用“命令”。

我希望这有帮助。

于 2013-05-21T19:47:00.367 回答
2

在我看来,您的批处理文件不会产生任何输出。如果您在命令行中运行它,您会看到输出吗?您的 bat 文件行中有重定向>运算符,因此您似乎正在将输出发送到 xml 文件。

如果您已将输出保存到 xml 文件,也许您应该在进程退出后使用 C# 加载该文件。

于 2013-05-21T10:08:15.303 回答