您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在c#中通過內存映射共享文件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
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#中通過內存映射共享文件,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。