首頁 > 後端開發 > C++ > 如何在單一 .NET 進程中執行多個命令而不建立新進程?

如何在單一 .NET 進程中執行多個命令而不建立新進程?

DDD
發布: 2025-01-04 02:45:40
原創
873 人瀏覽過

How to Execute Multiple Commands in a Single .NET Process Without Creating New Processes?

執行多個命令而不使用.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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板