執行多個命令而不使用.NET 創建新進程
要高效執行多個命令而不為每個命令創建新進程,您可以重定向標準輸入並利用StreamWriter 寫入標準輸入。以下是修改程式碼的方法:
using System.Diagnostics; namespace ExecuteMultipleCommands { class Program { static void Main(string[] args) { Process p = new Process(); ProcessStartInfo info = new ProcessStartInfo(); info.FileName = "cmd.exe"; info.RedirectStandardInput = true; info.UseShellExecute = false; p.StartInfo = info; p.Start(); using (StreamWriter sw = p.StandardInput) { if (sw.BaseStream.CanWrite) { sw.WriteLine("mysql --user=root --password=sa casemanager"); sw.WriteLine("your-query-here"); sw.WriteLine("exit"); } } } } }
此更新的程式碼將啟動DOS 指令shell,透過輸入「mysql --user=root --password=sa casemanager」切換到MySQL 指令shell,執行你想要的MySQL查詢,最後輸入「exit」退出MySQL shell。
透過使用StreamWriter寫入shell進程的標準輸入,你可以有效地執行多個命令在單一流程中,簡化流程執行並提高整體效能。
以上是如何在單一 .NET 進程中執行多個命令而不建立新進程?的詳細內容。更多資訊請關注PHP中文網其他相關文章!