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

溫馨提示×

溫馨提示×

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

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

C# Stream 與 byte[]、文件的轉換

發布時間:2020-07-29 06:56:22 來源:網絡 閱讀:387 作者:胡雨生 欄目:網絡安全

/* - - - - - - - - - - - - - - - - - - - - - - - - 
* Stream 和 byte[] 之間的轉換 
* - - - - - - - - - - - - - - - - - - - - - - - 
*/ 
/// <summary> 
/// 將 Stream 轉成 byte[] 
/// </summary> 
public byte[] StreamToBytes(Stream stream) 

    byte[] bytes = new byte[stream.Length]; 
    stream.Read(bytes, 0, bytes.Length); 
    // 設置當前流的位置為流的開始 
    stream.Seek(0, SeekOrigin.Begin); 
    return bytes; 

/// <summary> 
/// 將 byte[] 轉成 Stream 
/// </summary> 
public Stream BytesToStream(byte[] bytes) 

Stream stream = new MemoryStream(bytes); 
    return stream; 


/* - - - - - - - - - - - - - - - - - - - - - - - - 
* Stream 和 文件之間的轉換 
* - - - - - - - - - - - - - - - - - - - - - - - 
*/ 
/// <summary> 
/// 將 Stream 寫入文件 
/// </summary> 
public void StreamToFile(Stream stream,string fileName) 

    // 把 Stream 轉換成 byte[] 
    byte[] bytes = new byte[stream.Length]; 
    stream.Read(bytes, 0, bytes.Length); 
    // 設置當前流的位置為流的開始 
    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(); 

/// <summary> 
/// 從文件讀取 Stream 
/// </summary> 
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[] 轉換成 Stream 
    Stream stream = new MemoryStream(bytes); 
    return stream; 

向AI問一下細節

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

AI

台中市| 聂拉木县| 姚安县| 左云县| 嘉定区| 西乌珠穆沁旗| 新邵县| 清镇市| 祁阳县| 图们市| 清流县| 科尔| 太湖县| 天祝| 苗栗市| 类乌齐县| 盐城市| 乡城县| 定襄县| 绵竹市| 青铜峡市| 黄浦区| 丹江口市| 丹寨县| 深圳市| 永胜县| 华宁县| 达孜县| 玉林市| 即墨市| 温州市| 杨浦区| 贺兰县| 思南县| 永丰县| 大名县| 萨迦县| 象山县| 达日县| 萍乡市| 鲁甸县|