-2

私はWebベースのアプリケーションに取り組んでいます。ページから .exe を呼び出したい。このためのコード行を追加しましたが、ボタンをクリックするとコンソール ウィンドウが表示され、次のような例外が表示されます -- Unhanded Exception : System.NUllRefrenceException : Object reference not set to an instance of the object.

誰かがexeを実行するのを手伝ってくれませんか...

ありがとう、サンジェイ

4

1 に答える 1

0

これを行う方法の例を次に示します。

System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo(@"c:\yourProgram.exe", @"-p customParam");
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
string result = proc.StandardOutput.ReadToEnd();
于 2012-06-18T13:01:14.410 に答える