亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何調用exe傳參并獲取打印值

發布時間:2021-04-16 14:13:55 來源:億速云 閱讀:462 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關C#如何調用exe傳參并獲取打印值的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

調用方法:

string baseName = System.IO.Directory.GetCurrentDirectory();
 // baseName+"/"
 // string fileName = @"C:\Users\59930\Desktop\20170605\WindowsFormsApp1\WindowsFormsApp1\WindowsFormsApp1\bin\x86\Debug\WindowsFormsApp1.exe";
 string fileName = baseName + @"\CardRead.exe";
 string para = "1.exe " + code;          
 Process p = new Process();
 p.StartInfo.UseShellExecute = false;
 p.StartInfo.RedirectStandardOutput = true;
 p.StartInfo.FileName = fileName;
 p.StartInfo.CreateNoWindow = true;
 p.StartInfo.Arguments = para;//參數以空格分隔,如果某個參數為空,可以傳入””  
 p.Start();
 p.WaitForExit();
 string output = p.StandardOutput.ReadToEnd();

調用的exe 返回值中寫

Console.Write(mmma);

補充:c#調用外部exe的方法有簡單,有復雜的。

最簡單的就是直接利用process類

using System.Diagnostics;
Process.Start(" demo.exe");

想要詳細設置的話,就

  public static void RunExeByProcess(string exePath, string argument)
  {
   //創建進程
   System.Diagnostics.Process process = new System.Diagnostics.Process();
   //調用的exe的名稱
   process.StartInfo.FileName = exePath;
   //傳遞進exe的參數
   process.StartInfo.Arguments = argument;
   process.StartInfo.UseShellExecute = false;
   //不顯示exe的界面
   process.StartInfo.CreateNoWindow = true;
   process.StartInfo.RedirectStandardOutput = true;
   process.StartInfo.RedirectStandardInput = true;
   process.Start();
 
   process.StandardInput.AutoFlush = true;
   //阻塞等待調用結束
   process.WaitForExit();
  }

如果想獲取調用程序返回的的結果,那么只需要把上面的稍加修改增加返回值即可:

public static string RunExeByProcess(string exePath, string argument)
  {
   //創建進程
   System.Diagnostics.Process process = new System.Diagnostics.Process();
   //調用的exe的名稱
   process.StartInfo.FileName = exePath;
   //傳遞進exe的參數
   process.StartInfo.Arguments = argument;
   process.StartInfo.UseShellExecute = false;
   //不顯示exe的界面
   process.StartInfo.CreateNoWindow = true;
   process.StartInfo.RedirectStandardOutput = true;
   process.StartInfo.RedirectStandardInput = true;
   process.Start();
 
   process.StandardInput.AutoFlush = true;
 
   string result = null;
   while (!process.StandardOutput.EndOfStream)
   {
    result += process.StandardOutput.ReadLine() + Environment.NewLine;
   }
   process.WaitForExit();
   return result;
  }

感謝各位的閱讀!關于“C#如何調用exe傳參并獲取打印值”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

exe
AI

荔浦县| 岳阳县| 寻乌县| 绥宁县| 邹城市| 澄迈县| 洪湖市| 北安市| 若羌县| 沾化县| 门头沟区| 阳江市| 依安县| 安丘市| 武川县| 洛阳市| 邛崃市| 石景山区| 陈巴尔虎旗| 安龙县| 宁陕县| 玛多县| 平凉市| 贺兰县| 正宁县| 金阳县| 灵川县| 佳木斯市| 冀州市| 财经| 罗江县| 海宁市| 耿马| 衡山县| 汾西县| 龙州县| 中阳县| 闸北区| 洱源县| 哈巴河县| 昌邑市|