91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

潞西市| 德化县| 衡东县| 马关县| 简阳市| 长岭县| 普格县| 鲁山县| 天气| 玉门市| 杂多县| 来凤县| 汶上县| 兴海县| 高淳县| 西乡县| 房山区| 清新县| 安康市| 客服| 五台县| 汝南县| 焦作市| 临武县| 汝城县| 永登县| 藁城市| 吴桥县| 盐山县| 临夏县| 白水县| 绥阳县| 汤阴县| 新闻| 长寿区| 蓝山县| 吴江市| 镇坪县| 长岛县| 东乌| 合肥市|