這篇文章主要介紹了C# 使用Process調用外部程式中所遇到的參數問題,需要的朋友可以參考下
在使用Process.Start 調用外部程式時,除了程式的地址之外,是可以傳遞參數的,Process.Start 也有多個重載;
// // 摘要: // 啟動由包含進程啟動資訊(例如,要啟動的進程的檔案名稱)的參數指定的進程資源,並將該資源與新的 System.Diagnostics.Process // 組件關聯。 // // 參數: // startInfo: // System.Diagnostics.ProcessStartInfo,包含用於啟動進程的資訊(包括檔案名稱和任何命令列參數)。 // // 返回結果: // 與進程資源關聯的新的 System.Diagnostics.Process 組件,或者如果沒有啟動進程資源(例如,如果重用了現有進程),則為 null。 // // 異常: // System.InvalidOperationException: // 在 startInfo 參數的 System.Diagnostics.ProcessStartInfo.FileName 屬性中未指定任何檔案名稱。- // 或 - startInfo 參數的 System.Diagnostics.ProcessStartInfo.UseShellExecute 屬性為 // true,而 System.Diagnostics.ProcessStartInfo.RedirectStandardInput、System.Diagnostics.ProcessStartInfo.RedirectStandardOutput // 或 System.Diagnostics.ProcessStartInfo.RedirectStandardError 屬性也為 true。- 或 // -startInfo 參數的 System.Diagnostics.ProcessStartInfo.UseShellExecute 屬性為 true,而 // System.Diagnostics.ProcessStartInfo.UserName 屬性不為 null 或空,或者 System.Diagnostics.ProcessStartInfo.Password // 屬性不為 null。 // // System.ArgumentNullException: // startInfo 參數為 null。 // // System.ComponentModel.Win32Exception: // 開啟關聯的檔案時發生了錯誤。 // // System.ObjectDisposedException: // 該進程對象已被釋放。 public static Process Start(ProcessStartInfo startInfo); // // 摘要: // 通過指定文檔或應用程式檔案的名稱來啟動進程資源,並將資源與新的 System.Diagnostics.Process 組件關聯。 // // 參數: // fileName: // 要在進程中啟動並執行文檔或應用程式檔案的名稱。 // // 返回結果: // 與進程資源關聯的新的 System.Diagnostics.Process 組件,或者如果沒有啟動進程資源(例如,如果重用了現有進程),則為 null。 // // 異常: // System.ComponentModel.Win32Exception: // 開啟關聯的檔案時發生了錯誤。 // // System.ObjectDisposedException: // 該進程對象已被釋放。 // // System.IO.FileNotFoundException: // PATH 環境變數有包含引號的字串。 public static Process Start(string fileName); // // 摘要: // 通過指定應用程式的名稱和一組命令列參數來啟動一個進程資源,並將該資源與新的 System.Diagnostics.Process 組件相關聯。 // // 參數: // fileName: // 要在該進程中啟動並執行應用程式檔案的名稱。 // // arguments: // 啟動該進程時傳遞的命令列參數。 // // 返回結果: // 與該進程關聯的新的 System.Diagnostics.Process 組件,或者如果沒有啟動進程資源(例如,如果重用了現有進程),則為 null。 // // 異常: // System.InvalidOperationException: // fileName 或 arguments 參數為 null。 // // System.ComponentModel.Win32Exception: // 開啟關聯的檔案時發生了錯誤。 // // System.ObjectDisposedException: // 該進程對象已被釋放。 // // System.IO.FileNotFoundException: // PATH 環境變數有包含引號的字串。 public static Process Start(string fileName, string arguments); // // 摘要: // 通過指定應用程式的名稱、使用者名稱、密碼和域來啟動一個進程資源,並將該資源與新的 System.Diagnostics.Process 組件關聯起來。 // // 參數: // fileName: // 要在該進程中啟動並執行應用程式檔案的名稱。 // // userName: // 啟動進程時使用的使用者名稱。 // // password: // 一個 System.Security.SecureString,它包含啟動進程時要使用的密碼。 // // domain: // 啟動進程時要使用的域。 // // 返回結果: // 與進程資源關聯的新的 System.Diagnostics.Process 組件,或者如果沒有啟動進程資源(例如,如果重用了現有進程),則為 null。 // // 異常: // System.InvalidOperationException: // 未指定檔案名稱。 // // System.ComponentModel.Win32Exception: // fileName 不是可執行 (.exe) 檔案。 // // System.ComponentModel.Win32Exception: // 開啟關聯的檔案時發生了錯誤。 // // System.ObjectDisposedException: // 該進程對象已被釋放。 public static Process Start(string fileName, string userName, SecureString password, string domain); // // 摘要: // 通過指定應用程式的名稱、一組命令列參數、使用者名稱、密碼和域來啟動一個進程資源,並將該資源與新的 System.Diagnostics.Process // 組件關聯起來。 // // 參數: // fileName: // 要在該進程中啟動並執行應用程式檔案的名稱。 // // arguments: // 啟動該進程時傳遞的命令列參數。 // // userName: // 啟動進程時要使用的使用者名稱。 // // password: // 一個 System.Security.SecureString,它包含啟動進程時要使用的密碼。 // // domain: // 啟動進程時要使用的域。 // // 返回結果: // 與進程資源關聯的新的 System.Diagnostics.Process 組件,或者如果沒有啟動進程資源(例如,如果重用了現有進程),則為 null。 // // 異常: // System.InvalidOperationException: // 未指定檔案名稱。 // // System.ComponentModel.Win32Exception: // fileName 不是可執行 (.exe) 檔案。 // // System.ComponentModel.Win32Exception: // 開啟關聯的檔案時發生了錯誤。 // // System.ObjectDisposedException: // 該進程對象已被釋放。 public static Process Start(string fileName, string arguments, string userName, SecureString password, string domain);
其中的arguments 參數, 是有個空格的問題的, 在外部程式接收參數的 (Winform) 是用過Main(string[] args) 。 其中args是數組 , 在StartInfo.Arguments中的參數的間隔是根據空格進行分斷的。 所以如果在傳遞的參數中是空格的,就需要 在 參數前後追加 “\"” 即:
string argument1 = "\"" + argv1 + "\""; string argument2 = "\"" + argv2 + "\""; Process process = new Process(); process.StartInfo.FileName = System.Environment.CurrentDirectory + "//test.exe"; process.StartInfo.Arguments = argument1 + " " + argument2; process.StartInfo.UseShellExecute = true; ; //啟動 process.Start();
ok, 這樣就能解決Process 傳遞參數的有空格的問題了。