乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      C# Stream 和 byte[] 之間的轉(zhuǎn)換(文件流的應(yīng)用)

       abin30 2019-03-19
      復(fù)制代碼
      一. 二進(jìn)制轉(zhuǎn)換成圖片
      MemoryStream ms = new MemoryStream(bytes);
      
      ms.Position = 0;
      
      Image img = Image.FromStream(ms);
      
      ms.Close();
      
      this.pictureBox1.Image
      
      二. C#中byte[]與string的轉(zhuǎn)換代碼
      
      1、System.Text.UnicodeEncoding converter = new System.Text.UnicodeEncoding();
        byte[] inputBytes =converter.GetBytes(inputString);
        string inputString = converter.GetString(inputBytes);
      
      2、string inputString = System.Convert.ToBase64String(inputBytes);
        byte[] inputBytes = System.Convert.FromBase64String(inputString);
      
      FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read);
      
      三. C# Stream 和 byte[] 之間的轉(zhuǎn)換
      
      /// 將 Stream 轉(zhuǎn)成 byte[]
      
      public byte[] StreamToBytes(Stream stream) 
      
      {
      
      byte[] bytes = new byte[stream.Length]; 
      
      stream.Read(bytes, 0, bytes.Length); 
      
      // 設(shè)置當(dāng)前流的位置為流的開始 
      
      stream.Seek(0, SeekOrigin.Begin); 
      
      return bytes; 
      
      }
      
      /// 將 byte[] 轉(zhuǎn)成 Stream
      
      public Stream BytesToStream(byte[] bytes) 
      
      { 
      
      Stream stream = new MemoryStream(bytes); 
      
      return stream; 
      
      }
      
      四. Stream 和 文件之間的轉(zhuǎn)換
      
      將 Stream 寫入文件
      
      public void StreamToFile(Stream stream,string fileName) 
      
      { 
      
      // 把 Stream 轉(zhuǎn)換成 byte[] 
      
      byte[] bytes = new byte[stream.Length]; 
      
      stream.Read(bytes, 0, bytes.Length); 
      
      // 設(shè)置當(dāng)前流的位置為流的開始 
      
      stream.Seek(0, SeekOrigin.Begin); 
      
      // 把 byte[] 寫入文件 
      
      FileStream fs = new FileStream(fileName, FileMode.Create); 
      
      BinaryWriter bw = new BinaryWriter(fs); 
      
      bw.Write(bytes);
      
      bw.Close(); 
      
      fs.Close(); 
      
      }
      
      五. 從文件讀取 Stream
      
      public Stream FileToStream(string fileName) 
      
      { 
      
      // 打開文件 
      
      FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read); 
      
      // 讀取文件的 byte[] 
      
      byte[] bytes = new byte[fileStream.Length]; 
      
      fileStream.Read(bytes, 0, bytes.Length); 
      
      fileStream.Close(); 
      
      // 把 byte[] 轉(zhuǎn)換成 Stream 
      
      Stream stream = new MemoryStream(bytes); 
      
      return stream;
      
      }
      復(fù)制代碼

        本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
        轉(zhuǎn)藏 分享 獻(xiàn)花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多