簡單介紹C#使用Process調用外部程式中所遇到的參數問題的程式碼範例

來源:互聯網
上載者:User
這篇文章主要介紹了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 傳遞參數的有空格的問題了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.