首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏全栈程序员必看

    ICSharpCode.SharpZipLib.dll 使用方法

    ICSharpCode.SharpZipLib.dll 使用方法 https://blog.csdn.net/luhn12345/article/details/48090887 ICSharpCode.SharpZipLib.dll 使用方法: 一、找到已经解压好的SharpZipLib,使用net-20文件夹中的ICSharpCode.SharpZipLib.dll 。 参考:ICSharpCode.SharpZipLib 插件使用示例 发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/154580.html原文链接:https://javaforall.cn

    3K50编辑于 2022-09-06
  • 来自专栏全栈程序员必看

    使用ICSharpCode.SharpZipLib.dll实现在线解压缩

    ICSharpCode.SharpZipLib.dll 是一个基于GNU的免费库文件,他的功能很强大。 下载地址:http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx 下面是对#ZipLib进行.net下的解压缩的方法的介绍。 1.BZip2 加入ICSharpCode.SharpZipLib.dll的引用,在#Develop的安装目录下的/SharpDevelop/bin目录下。 using System; using System.IO; using ICSharpCode.SharpZipLib.BZip2; class using System; using System.IO; using ICSharpCode.SharpZipLib.GZip; class MainClass

    1.5K20编辑于 2022-09-17
  • 来自专栏.NET 全栈开发专栏

    ICSharpCode.SharpZipLib.Zip 解析时报错System.NotSupportedException: No data is availa

    分析原因利用ICSharpCode.SharpZipLib.Zip进行APK解析时,因为APK内编译的名称为中文,查询微软开发文档936为gb2312中文编码微软开发文档地址// 错误代码using ( using (BinaryReader s = new BinaryReader(strm)) {resourcesData = s.ReadBytes((int)entry.Size);}}}}}}以上就是ICSharpCode.SharpZipLib.Zip

    52540编辑于 2023-10-31
  • 来自专栏跟着阿笨一起玩NET

    C#利用SharpZipLib解压或压缩文件夹实例操作

    )下载SharpZipLib.dll,在http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx中有最新免费版本,“Assemblies ; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.GZip; /// /// ZipFloClass 的摘要说明 using System.IO; using System.Diagnostics; using System.Runtime.Serialization.Formatters.Binary; using ICSharpCode.SharpZipLib.BZip2 ; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Zip.Compression; using ICSharpCode.SharpZipLib.Zip.Compression.Streams ; using ICSharpCode.SharpZipLib.GZip; using ICSharpCode.SharpZipLib.Checksums; /// /// UnZipFloClass

    3.3K10发布于 2018-09-19
  • 来自专栏.NET 全栈开发专栏

    利用ICSharpCode.SharpZipLib.dll解析 出错:“Wrong Local header signature: 0xFF8”

    分析原因利用ICSharpCode.SharpZipLib.dll解析APK时,进入APK的AndroidXml获取时出现报错出错代码using (ICSharpCode.SharpZipLib.Zip.ZipInputStream zip = new ICSharpCode.SharpZipLib.Zip.ZipInputStream(File.OpenRead(path))) {using (var filestream = new FileStream(path, FileMode.Open, FileAccess.Read)) {ICSharpCode.SharpZipLib.Zip.ZipFile zipfile = new ICSharpCode.SharpZipLib.Zip.ZipFile(filestream);ICSharpCode.SharpZipLib.Zip.ZipEntry item; )) {resourcesData = s.ReadBytes((int)entry.Size);}}}}}}参考链接Wrong Local header signature: 0xFF8以上就是利用ICSharpCode.SharpZipLib.dll

    79240编辑于 2023-10-31
  • 来自专栏全栈程序员必看

    C#使用#ziplib压缩和解压缩文件

    一般方法是一个个文件下载或ftp工具 现在用SharpZipLib就能实现实时zip压缩下载整个目录 SharpZipLib提供了多种压缩算法的支持,纯csharp代码,参见 http://www.icsharpcode.net 以下为转贴内容: 我在做项目的时候需要将文件进行压缩和解压缩,于是就从http://www.icsharpcode.net/下载了关于压缩和解压缩的源码,但是下载下来后,面对这么多的代码,一时不知如何下手 下面就来解释如何在C#里用http://www.icsharpcode.net/下载的SharpZipLib进行文件的压缩和解压缩。 首先需要在项目里引用SharpZipLib.dll。 ; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.GZip; namespace Compression { ; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Zip.Compression; using ICSharpCode.SharpZipLib.Zip.Compression.Streams

    1.3K20编辑于 2022-09-19
  • 来自专栏葡萄城控件技术团队

    分享自制的C#和VB Code互转工具

    使用的第三方库 该工具中使用的是开源项目 <SharpDevelop> 的库,分别引用了 ICSharpCode.Core.dll ICSharpCode.NRefactory.dll ICSharpCode.SharpDevelop.Dom.dll log4net.dll Mono.Cecil.dll 使用方法 该库的用法如下: using ICSharpCode.SharpDevelop.Dom.NRefactoryResolver; CodeSnippetConverter

    1.2K90发布于 2018-01-10
  • 来自专栏张善友的专栏

    代码转换工具 Code Converter 2013

    The DLL files I used are FastColoredTextBox.dll, ConversionWrapper.dll, ICSharpCode.NRefactory.dll, and The ICSharpCode.NRefactory DLL can be found at their website. The ICSharpCode.NRefactory DLL accompanies the CodeConvert.dll file. rspConVert.dll is a remake of Deniz

    1.2K60发布于 2018-01-30
  • 来自专栏全栈程序员必看

    C# ZIP文件的压缩和解压缩(SharpZipLib.dll)

    System.Diagnostics; using System.Runtime.Serialization.Formatters.Binary; using System.Data; using ICSharpCode.SharpZipLib.BZip2 ; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.Zip.Compression; using ICSharpCode.SharpZipLib.Zip.Compression.Streams ; using ICSharpCode.SharpZipLib.GZip; using ICSharpCode.SharpZipLib.Checksums; namespace Updatezip {

    1.4K20编辑于 2022-09-17
  • 来自专栏全栈程序员必看

    利用#ZipLib,完成C#下的解压缩「建议收藏」

    ICSharpCode.SharpZipLib.dll是一个压缩的类库,似乎不是微软提供的 1.BZip2 加入ICSharpCode.SharpZipLib.dll的引用,在#Develop using System; using System.IO; using ICSharpCode.SharpZipLib.BZip2; class MainClass { public Compress(File.OpenRead(args[0]), File.Create(args[0] + “.bz”), 4096); } } } 2.GZip 加入ICSharpCode.SharpZipLib.dll using System; using System.IO; using ICSharpCode.SharpZipLib.GZip; class MainClass { public static

    81910编辑于 2022-09-17
  • 来自专栏编程进阶实战

    .NET反编译神器ILSpy怎么用?

    GitHub开源地址:https://github.com/icsharpcode/ILSpy 什么场景会用到ILSpy? ILSpy下载安装 安装下载地址:https://github.com/icsharpcode/ILSpy/releases 个性化设置 语言设置 显示类型 主题设置 ILSpy反编译应用程序集

    2.7K20编辑于 2023-09-24
  • 来自专栏码客

    WPF文件压缩

    文件压缩 添加依赖 Install-Package ICSharpCode.SharpZipLib.dll -Version 0.85.4.369 工具类 using System; using System.IO ; using ICSharpCode.SharpZipLib.Checksums; using ICSharpCode.SharpZipLib.Zip; namespace SchoolClient.Utils

    1.2K31发布于 2020-08-12
  • 来自专栏Angular学习规划

    C#通过URl批量下载&打包压缩

    using ICSharpCode.SharpZipLib.Zip** 引用的类 using ICSharpCode.SharpZipLib.Zip; 下载地址:https://download.csdn.net

    92730编辑于 2023-10-17
  • 来自专栏编程进阶实战

    4款免费且实用的.NET反编译工具

    GitHub开源地址:https://github.com/icsharpcode/ILSpy 安装下载地址:https://github.com/icsharpcode/ILSpy/releases

    2.7K30编辑于 2023-09-23
  • 来自专栏.NET企业级解决方案应用与咨询

    .NET Core/.NET5/.NET6 开源项目汇总12:WPF组件库2

    示例程序 https://github.com/icsharpcode/ILSpy/ ILSpy .NET decompiler https://github.com/KirillOsenkov/MSBuildStructuredLog RoslynPad https://github.com/huangjia2107/XamlViewer LightWeight Xaml Editor GitHub:https://github.com/icsharpcode (2)AvaloniaILSpy GitHub: https://github.com/icsharpcode/AvaloniaILSpy 5、Extended WPF Toolkit

    3.2K10发布于 2021-08-18
  • 来自专栏全栈程序员必看

    使用zlib/gzip压缩和解压缩?(Flash和GALGAME使用的压缩格式)[通俗易懂]

    方法1 通过 C# 使用 J# 类库中的 Zip 类压缩文件和数据,在MSDN上有的,在我印象中这篇文章还是中文的 方法2 ,#ziplib(以前称为 NZipLib,http://www.icsharpcode.net

    1.2K20编辑于 2022-09-13
  • 来自专栏DotNet NB && CloudNative

    【实用干货】推荐两款开源且功能强大.NET反编译神器

    ILSpy开源地址:https://github.com/icsharpcode/ILSpy 详细使用教程:https://mp.weixin.qq.com/s/s30tOUAf2HaVjdG03lZpMA

    92210编辑于 2024-06-18
  • 来自专栏星河造梦坊专栏

    Unity网络交互☀️压缩包zip下载与解压

    注意:要引入ICSharpCode.SharpZipLib.Zip dll文件。 using ICSharpCode.SharpZipLib.Zip; using System; using System.Collections; using System.Collections.Generic

    68410编辑于 2024-08-15
  • 来自专栏林德熙的博客

    WPF 用 AvalonEdit 开发简单的代码编辑器 支持高亮自动提示

    打开 xaml 界面,添加控件,此时可以在界面设置代码高亮方式等 <avalonEdit:TextEditor xmlns:avalonEdit="http://<em>icsharpcode</em>.net avalonEdit:TextEditor.Options> </avalonEdit:TextEditor> 下面是详细一点的参数含义 第二句话的 xmlns:avalonEdit="http://icsharpcode.net

    6.5K10发布于 2020-02-17
  • 来自专栏ccf19881030的博客

    可为您节省时间和精力的10个C#库

    https://www.patreon.com/IAmTimCorey Mailing List: https://signup.iamtimcorey.com/ SharpZipLib: http://icsharpcode.github.io

    73910发布于 2021-01-13
领券