利用Visual C#實現Windows管道技術

來源:互聯網
上載者:User
visual|window

  管道技術一般採用Window API來實現,最近我試著用C#來實現Windows管道技術,發現C#本身方便的進程線程機制使工作變得簡單至極,隨手記錄一下,推薦給大家。

   首先,我們可以通過設定Process類,擷取輸出介面,代碼如下:

Process proc = new Process();
proc .StartInfo.FileName = strScript;
proc .StartInfo.WorkingDirectory = strDirectory;
proc .StartInfo.CreateNoWindow = true;
proc .StartInfo.UseShellExecute = false;
proc .StartInfo.RedirectStandardOutput = true;
proc .Start();

   然後設定線程連續讀取輸出的字串:

eventOutput = new AutoResetEvent(false);
AutoResetEvent[] events = new AutoResetEvent[1];
events[0] = m_eventOutput;

m_threadOutput = new Thread( new ThreadStart( DisplayOutput ) );
m_threadOutput.Start();
WaitHandle.WaitAll( events );

   線程函數如下:

private void DisplayOutput()
{
  while ( m_procScript != null && !m_procScript.HasExited )
  {
   string strLine = null;
   while ( ( strLine = m_procScript.StandardOutput.ReadLine() ) != null)
   {
    m_txtOutput.AppendText( strLine + "\r\n" );
    m_txtOutput.SelectionStart = m_txtOutput.Text.Length;
    m_txtOutput.ScrollToCaret();
   }
   Thread.Sleep( 100 );
  }
  m_eventOutput.Set();
}

   這裡要注意的是,使用以下語句使TextBox顯示的總是最新添加的,而AppendText而不使用+=,是因為+=會造成整個TextBox的回顯使得整個顯示地區閃爍

m_txtOutput.AppendText( strLine + "\r\n" );
m_txtOutput.SelectionStart = m_txtOutput.Text.Length;
m_txtOutput.ScrollToCaret();

   為了不阻塞主線程,可以將整個過程放到一個另一個線程裡就可以了



相關文章

聯繫我們

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