[轉載]C#如何?對外部程式的動態調用

來源:互聯網
上載者:User

[轉載]C#如何?對外部程式的動態調用

調用cmd.exe程式和外部程式

using System;
using System.Diagnostics;

namespace ApplyCmd
{
 ///

 /// CmdUtility 的摘要說明。
 ///
 public class CmdUtility
 {
  
  ///

  /// 執行cmd.exe命令
  ///
  ///  /// 命令輸出文本
  public static string ExeCommand(string commandText)
  {
   return ExeCommand(new string []{commandText});
  }
  ///

  /// 執行多條cmd.exe命令
  ///
  ///  /// 命令輸出文本
  public static string ExeCommand(string [] commandTexts)
  {
   Process p = new Process();
   p.StartInfo.FileName = "cmd.exe";
   p.StartInfo.UseShellExecute = false;
   p.StartInfo.RedirectStandardInput = true;
   p.StartInfo.RedirectStandardOutput = true;
   p.StartInfo.RedirectStandardError = true;
   p.StartInfo.CreateNoWindow = true;
   string strOutput = null;
   try
   {
    p.Start();
    foreach(string item in commandTexts)
    {
     p.StandardInput.WriteLine(item);
    }
    p.StandardInput.WriteLine("exit");
    strOutput = p.StandardOutput.ReadToEnd();
    p.WaitForExit();
    p.Close();
   }
   catch(Exception e)
   {
    strOutput = e.Message;
   }
   return strOutput;
  }
  ///

  /// 啟動外部Windows應用程式,隱藏程式介面
  ///
  ///  /// true表示成功,false表示失敗
  public static bool StartApp(string appName)
  {
   return StartApp(appName,ProcessWindowStyle.Hidden);
  }
  ///

  /// 啟動外部應用程式
  ///
  ///  ///  /// true表示成功,false表示失敗
  public static bool StartApp(string appName,ProcessWindowStyle style)
  {
   return StartApp(appName,null,style);
  }
  ///

  /// 啟動外部應用程式,隱藏程式介面
  ///
  ///  ///  /// true表示成功,false表示失敗
  public static bool StartApp(string appName,string arguments)
  {
   return StartApp(appName,arguments,ProcessWindowStyle.Hidden);
  }
  ///

  /// 啟動外部應用程式
  ///
  ///  ///  ///  /// true表示成功,false表示失敗
  public static bool StartApp(string appName,string arguments,ProcessWindowStyle style)
  {
   bool blnRst = false;
   Process p = new Process();
   p.StartInfo.FileName = appName;//exe,bat and so on
   p.StartInfo.WindowStyle = style;
   p.StartInfo.Arguments = arguments;
   try
   {
    p.Start();
    p.WaitForExit();
    p.Close();
    blnRst = true;
   }
   catch
   {
   }
   return blnRst;
  }
 }
}

ps:利用System.Diagnostics.Process來壓縮檔或檔案夾

string strArg = "a -r  {0} {1}";
    System.Diagnostics.Process.Start(@"C:\Program Files\WinRAR\rar.exe", String.Format(strArg, txtApp.Text+".rar", txtApp.Text));

strArg為winrar的命令參數,請參考說明。

 
.NET環境中,在程式裡調起其他應用程式

以程式中調起寫字板為例:

using System.Diagnostics;

......

Process.Start("notepad.exe","c:\test.txt");

說明:

用到System.Diagnostics包,

Process.Start( [ 應用程式可執行檔的路徑 ] , [參數] ) ;

 

使用System.Diagnostics.Process.Start調用外部程式,如何等待外部程式執行完,再從調用處接著往下執行。

System.Diagnostics.Process p1= Process.Start("sqlplus.exe", connectstring+" @"+filename);
p1.WaitForExit();//從而使外部程式運行完之後才接著往下運行。
.........接下去的代碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.