久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

GZipStream 和 DeflateStream 不會解壓縮所有字節

GZipStream And DeflateStream will not decompress all bytes(GZipStream 和 DeflateStream 不會解壓縮所有字節)
本文介紹了GZipStream 和 DeflateStream 不會解壓縮所有字節的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我需要一種在 .net 中壓縮圖像的方法,所以我研究了使用 .net GZipStream 類(或 DeflateStream).但是我發現解壓并不總是成功,有時圖像可以解壓得很好,有時我會收到 GDI+ 錯誤,表明某些東西已損壞.

I was in need of a way to compress images in .net so i looked into using the .net GZipStream class (or DeflateStream). However i found that decompression was not always successful, sometimes the images would decompress fine and other times i would get a GDI+ error that something is corrupted.

在調查這個問題后,我發現解壓沒有返回它壓縮的所有字節.所以如果我壓縮了 2257974 個字節,我有時只會得到 2257870 個字節(實數).

After investigating the issue i found that the decompression was not giving back all the bytes it compressed. So if i compressed 2257974 bytes i would sometimes get back only 2257870 bytes (real numbers).

最有趣的是有時它會起作用.所以我創建了這個只壓縮 10 個字節的小測試方法,現在我什么也沒有得到.

The most funny thing is that sometimes it would work. So i created this little test method that compresses only 10 bytes and now i don't get back anything at all.

我用 GZipStream 和 DeflateStream 兩種壓縮類都嘗試過,我仔細檢查了我的代碼是否有可能的錯誤.我什至嘗試將流定位到 0 并刷新所有流,但沒有運氣.

I tried it with both compression classes GZipStream and DeflateStream and i double checked my code for possible errors. I even tried positioning the stream to 0 and flushing all the streams but with no luck.

這是我的代碼:

    public static void TestCompression()
    {
        byte[] test = new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };

        byte[] result = Decompress(Compress(test));

        // This will fail, result.Length is 0
        Debug.Assert(result.Length == test.Length);
    }

    public static byte[] Compress(byte[] data)
    {
        var compressedStream = new MemoryStream();
        var zipStream = new GZipStream(compressedStream, CompressionMode.Compress);
        zipStream.Write(data, 0, data.Length);
        return compressedStream.ToArray();
    }

    public static byte[] Decompress(byte[] data)
    {
        var compressedStream = new MemoryStream(data);
        var zipStream = new GZipStream(compressedStream, CompressionMode.Decompress);
        var resultStream = new MemoryStream();

        var buffer = new byte[4096];
        int read;

        while ((read = zipStream.Read(buffer, 0, buffer.Length)) > 0) {
            resultStream.Write(buffer, 0, read);
        }

        return resultStream.ToArray();
    }

推薦答案

添加所有要壓縮的數據后,需要Close() ZipStream;它在內部保留了一個需要寫入的未寫入字節緩沖區(即使您 Flush()).

You need to Close() the ZipStream after adding all the data you want to compress; it retains a buffer of unwritten bytes internally (even if you Flush()) that needs to be written.

更一般地說,StreamIDisposable,所以你也應該 using 每個......(是的,我知道 MemoryStream 不會丟失任何數據,但如果你不養成這個習慣,它會被其他 Stream 咬你.

More generally, Stream is IDisposable, so you should also be using each... (yes, I know that MemoryStream isn't going to lose any data, but if you don't get into this habit, it will bite you with other Streams).

public static byte[] Compress(byte[] data)
{
    using (var compressedStream = new MemoryStream())
    using (var zipStream = new GZipStream(compressedStream, CompressionMode.Compress))
    {
        zipStream.Write(data, 0, data.Length);
        zipStream.Close();
        return compressedStream.ToArray();
    }
}

public static byte[] Decompress(byte[] data)
{
    using(var compressedStream = new MemoryStream(data))
    using(var zipStream = new GZipStream(compressedStream, CompressionMode.Decompress))
    using (var resultStream = new MemoryStream())
    { ... }
}

不要使用諸如MemoryStream之類的東西——這總是一個有趣的事情,圍欄兩邊都有很多選票:但最終......

[edit : updated re comment] Re not using things like MemoryStream - this is always a fun one, with lots of votes on either side of the fence: but ultimatey...

(修辭——我們都知道答案...) MemoryStream 是如何實現的?它是一個字節 [](由 .NET 擁有)嗎?它是內存映射文件(由操作系統擁有)嗎?

(rhetorical - we all know the answer...) How is MemoryStream implemented? is it a byte[] (owned by .NET)? is it a memory-mapped file (owned by the OS)?

您不使用的原因是因為您讓內部實現細節的知識改變了您針對公共 API 進行編碼的方式 - 即您剛剛違反了封裝定律.公共 API 說:我是 IDisposable;你欠我的;因此,當你完成后,Dispose() 我是你的工作.

The reason you aren't using it is because you are letting knowledge of internal implementation details change how you code against a public API - i.e. you just broke the laws of encapsulation. The public API says: I am IDisposable; you "own" me; therefore, it is your job to Dispose() me when you are through.

這篇關于GZipStream 和 DeflateStream 不會解壓縮所有字節的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Right-click on a Listbox in a Silverlight 4 app(右鍵單擊 Silverlight 4 應用程序中的列表框)
WPF c# webbrowser scrolls over top menu(WPF c# webbrowser 在頂部菜單上滾動)
C# Console app - How do I make an interactive menu?(C# 控制臺應用程序 - 如何制作交互式菜單?)
How to avoid duplicate form creation in .NET Windows Forms?(如何避免在 .NET Windows Forms 中創建重復的表單?)
UI Automation Control Desktop Application and Click on Menu Strip(UI自動化控制桌面應用程序并單擊菜單條)
Removing thin border around the menuitems(刪除菜單項周圍的細邊框)
主站蜘蛛池模板: 国产在线1区 | 亚洲精品视频二区 | 欧美性网站 | 亚洲精品在线播放 | 亚洲国产第一页 | 精品一区在线 | 精品麻豆剧传媒av国产九九九 | 欧美成人免费在线视频 | 国产精品视频一二三 | 91热在线 | 成人做爰999| 欧美性高潮 | 在线播放一区二区三区 | 午夜日韩 | 久热中文字幕 | 超碰91在线 | av黄在线观看 | 日韩成人| 亚洲高清在线观看 | 亚欧洲精品在线视频免费观看 | 国产精品1区2区3区 欧美 中文字幕 | 亚洲欧洲国产视频 | 国产.com | 欧美高清视频 | 中文字幕在线免费观看 | 91 在线| 91午夜在线 | 国产一区二区三区四区在线观看 | 色精品视频| 久久久久久免费毛片精品 | 欧美成人激情 | a国产一区二区免费入口 | 国产高潮av | 免费看黄色视屏 | 一区二区三区四区在线播放 | 亚洲经典一区 | 免费看一级毛片 | 久久精品一二三影院 | 免费啪啪 | 国产精品免费一区二区三区四区 | 一级黄色av电影 |