程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中用NamedPipe進程間通信(1)

C#中用NamedPipe進程間通信(1)

編輯:關於C語言

本文只是一個測試例子,核心代碼是kernel32.dll中的一組Windows api函數,這裡不深入研究,代碼都在codeproject上。

http://www.codeproject.com/KB/threads/dotnetnamedpipespart1.ASPx

測試效果如下,可以做到ASPx和給console app發送消息後得到反饋:

console app為服務器端代碼如下

using System;
using AppModule.InterProcessComm;
using AppModule.NamedPipes;
using System.Threading;
namespace Server
{
    class Program
    {
        //**c#中用namedpipe進程間通信
        //**組件代碼來自codeproject
        //**http://www.codeproject.com/KB/threads/dotnetnamedpipespart1.ASPx
        //**下載上面鏈接中的代碼,編譯AppModule.InterProcessComm和AppModule.NamedPipes兩個dll
        //**引用這兩個dll到本例中,運行如下代碼作為服務器端測試
        //**測試代碼by jinjazz(因為原作者的兩個測試程序比較復雜,這裡簡化後供大家參考)
        static void Main(string[] args)
        {
            ServerPipeConnection PipeConnection = new ServerPipeConnection("np-test-by-jinjazz", 512, 512, 5000, false);
            Console.WriteLine("listening..");
            while (true)
            {
                try
                {
                    PipeConnection.Disconnect();
                    PipeConnection.Connect();
                    string request = PipeConnection.Read();
                    if (!string.IsNullOrEmpty(request))
                    {
                        Console.WriteLine("get:" + request);
                        PipeConnection.Write("get:" + request);
                        if (request.ToLower() == "break") break;
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                    break;
                }
            }
            PipeConnection.Dispose();
            Console.Write("press any key to exit..");
            Console.Read();
        }
    }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved