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

溫馨提示×

溫馨提示×

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

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

怎么在c#中通過內存映射共享文件

發布時間:2021-04-27 16:04:11 來源:億速云 閱讀:231 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關怎么在c#中通過內存映射共享文件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

App1代碼:

using System;
using System.Collections.Generic;android從資源文件中讀取文件流顯示
using System.Linq;
using System.Text;

using System.IO;

//引用內存映射文件命名空間
using System.IO.MemoryMappedFiles;

namespace App1
{
    class Program
    {
        static void Main(string[] args)
        {
            long capacity = 1<<10<<10;

            //創建或者打開共享內存
            using (var mmf = MemoryMappedFile.CreateOrOpen("testMmf", capacity, MemoryMappedFileAccess.ReadWrite))
            {
                //通過MemoryMappedFile的CreateViewAccssor方法獲得共享內存的訪問器
                var viewAccessor = mmf.CreateViewAccessor(0, capacity);
                //循環寫入,使在這個進程中可以向共享內存中寫入不同的字符串值
                while (true)
                {
                    Console.WriteLine("請輸入一行要寫入共享內存的文字:");

                    string input = Console.ReadLine();

                    //向共享內存開始位置寫入字符串的長度
                    viewAccessor.Write(0, input.Length);

                    //向共享內存4位置寫入字符
                    viewAccessor.WriteArray<char>(4, input.ToArray(), 0, input.Length);
                }

            }
            
        }
    }
}

App2代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

//引用使用內存映射文件需要的命名空間
using System.IO.MemoryMappedFiles;

namespace App2
{
    class Program
    {
        static void Main(string[] args)
        {
              long capacity = 1<<10<<10;

              using (var mmf = MemoryMappedFile.OpenExisting("testMmf"))
              {
                  MemoryMappedViewAccessor viewAccessor = mmf.CreateViewAccessor(0, capacity);

                  //循環刷新共享內存字符串的值
                  while (true)
                  {
                      //讀取字符長度
                      int strLength = viewAccessor.ReadInt32(0);                      
                      char[] charsInMMf = new char[strLength];
                      //讀取字符
                      viewAccessor.ReadArray<char>(4, charsInMMf, 0, strLength);
                      Console.Clear();
                      Console.Write(charsInMMf);
                      Console.Write("\r");
                      Thread.Sleep(200);
                  }
              }
        }
    }
}

App3代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using System.IO.MemoryMappedFiles;
using System.IO;

namespace App3
{
    class Program
    {
        static void Main(string[] args)
        {
            long capacity = 1 << 10 << 10;
            //打開共享內存
            using (var mmf = MemoryMappedFile.OpenExisting("testMmf"))
            {
                //使用CreateViewStream方法返回stream實例
                using (var mmViewStream = mmf.CreateViewStream(0, capacity))
                {
                    //這里要制定Unicode編碼否則會出問題
                    using (BinaryReader rdr = new BinaryReader(mmViewStream,Encoding.Unicode))
                    {
                        while (true)
                        {
                            mmViewStream.Seek(0, SeekOrigin.Begin);

                            int length = rdr.ReadInt32();

                            char[] chars = rdr.ReadChars(length);

                            Console.Write(chars);
                            Console.Write("\r");

                            System.Threading.Thread.Sleep(200);
                            Console.Clear();
                        }
                    }
                }
            }
        }
    }
}

以上就是怎么在c#中通過內存映射共享文件,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

万全县| 长白| 金秀| 达拉特旗| 中牟县| 阜南县| 昌江| 定远县| 阜康市| 丰城市| 淳化县| 新巴尔虎右旗| 九台市| 兴安县| 治多县| 顺平县| 新乡市| 绵阳市| 开阳县| 临漳县| 夏邑县| 马关县| 两当县| 赫章县| 迭部县| 云和县| 甘谷县| 屏南县| 锦州市| 图木舒克市| 阿鲁科尔沁旗| 五大连池市| 绍兴县| 托里县| 尚志市| 丹巴县| 唐山市| 肇州县| 牙克石市| 望奎县| 恩平市|