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

溫馨提示×

溫馨提示×

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

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

C#中用SharpZipLib生成gzip/解壓文件

發布時間:2020-06-23 21:56:16 來源:網絡 閱讀:3930 作者:RQSLT 欄目:編程語言

Code tells all:

using System;
using System.IO;
using ICSharpCode.SharpZipLib.GZip;
using ICSharpCode.SharpZipLib.Core;

namespace CNKIDataExport
{
    class Program
    {
        public static void gZipFile(string filePath, string zipFilePath)
        {
            Stream s = new GZipOutputStream(File.Create(zipFilePath));
            FileStream fs = File.OpenRead(filePath);
            int size;
            byte[] buf = new byte[4096];
            do
            {
                size = fs.Read(buf, 0, buf.Length);
                s.Write(buf, 0, size);
            } while (size > 0);
            s.Close();
            fs.Close();
        }

        public static void gunZipFile(string zipFilePath, string filePath)
        {
            using (Stream inStream = new GZipInputStream(File.OpenRead(zipFilePath)))
            using (FileStream outStream = File.Create(filePath))
            {
                byte[] buf = new byte[4096];
                StreamUtils.Copy(inStream, outStream, buf);
            }
        }

        static void Main(string[] args)
        {
            string src = @"D:\test\in.txt"
            string dest = @"D:\test\out.gz"
            string ori = @"D:\test\ori.txt"

            gZipFile(src, dest);
            Console.WriteLine("gzip over!");
            gunZipFile(dest, ori);
            Console.WriteLine("gunzip over!");
            Console.ReadKey();
        }
    }
}


相關鏈接:

1、SharpZipLib下載

2、Using SharpZipLib to gzip a file

3、ICSharpCode.SharpZipLib.GZip.GZipInputStream Class Reference

4、C#利用SharpZipLib解壓或壓縮文件夾實例操作(ZIP格式)


*** walker ***


向AI問一下細節

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

AI

平邑县| 安溪县| 阿坝县| 富蕴县| 邯郸市| 尼玛县| 浮梁县| 鄯善县| 洪湖市| 囊谦县| 浦北县| 嵩明县| 图片| 明水县| 黔江区| 汉阴县| 南涧| 营口市| 交口县| 青冈县| 巴彦淖尔市| 龙川县| 江西省| 霍邱县| 金坛市| 香河县| 酉阳| 宜宾市| 洛隆县| 巴塘县| 滁州市| 饶河县| 通海县| 海林市| 红河县| 额尔古纳市| 宣化县| 乐陵市| 徐闻县| 台中市| 梅河口市|