Unity读取Excel所需要库文件Excel.dll system.data ICSharpCode.SharpZipLib.dll
2020-11-24 09:57:18 346KB Excel Unity
1
ICSharpCode.SharpZipLib【内含0.86.0.518版本和0.84.0.0版本】 如果你报了异常形如: System.IO.FileNotFoundException:“未能加载文件或程序集“ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73”或它的某一个依赖项。系统找不到指定的文件。” 下载该dll并添加引用至项目即可
2020-01-03 11:22:43 132KB ICSharpCode. 0.86.0.518 0.84.0.0
1
unity读取excel文件所需要的dll文件。unity读取excel文件所需要的dll文件。unity读取excel文件所需要的dll文件。
2019-12-21 21:34:15 387KB Excel.dll ICSharpCode System.Data
1
asp.net文件和文件夹压缩 调用类库ICSharpCode.SharpZipLib.dll using System.IO; using ICSharpCode.SharpZipLib; using ICSharpCode.SharpZipLib.Checksums; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.GZip; using ICSharpCode.SharpZipLib.BZip2; using ICSharpCode.SharpZipLib.Zip.Compression; using ICSharpCode.SharpZipLib.Zip.Compression.Streams; protected void Button1Click(object sender, EventArgs e) { string[] str = new string[1]; str[0] = @"E:\9541241560\地学院\"; Zip(str); } #region 压缩 /// /// 压缩文件,默认目录为当前目录,文件名为当前目录名,压缩级别为6 /// /// 要压缩的文件或文件夹 public void Zip(params string[] fileOrDirectory) { Zip(6, fileOrDirectory); } /// /// 压缩文件,默认目录为当前目录,文件名为当前目录名 /// /// 压缩的级别 /// 要压缩的文件或文件夹 public void Zip(int zipLevel, params string[] fileOrDirectory) { if (fileOrDirectory == null) return; else if (fileOrDirectory.Length < 1) return; else { string str = fileOrDirectory[0]; if (str.EndsWith("\\")) str = str.Substring(0, str.Length - 1); str += ".zip"; Zip(str, zipLevel, fileOrDirectory); } } /// /// 压缩文件,默认目录为当前目录 /// /// 压缩后的文件 /// 压缩的级别 /// 要压缩的文件或文件夹 public void Zip(string zipedFileName, int zipLevel, params string[] fileOrDirectory) { if (fileOrDirectory == null) return; else if (fileOrDirectory.Length < 1) return; else { string str = fileOrDirectory[0]; if (str.EndsWith("\\")) str = str.Substring(0, str.Length - 1); str = str.Substring(0, str.LastIndexOf("\\")); Zip(zipedFileName, str, zipLevel, fileOrDirectory); } } /// /// 压缩文件 /// /// 压缩后的文件 /// 压缩的级别 /// 当前所处目录 /// 要压缩的文件或文件夹 public void Zip(string zipedFileName, string currentDire
2019-12-21 21:33:32 236KB .net 解压缩 SharpZipLib
1
unity通过C#读写文本文件工具ICSharpCode.SharpZipLib ,Excel.dll,Data.dll
2019-12-21 21:24:29 385KB C#工具
1
icsharpcode.sharpziplib.dll各版本下载(包含 0.86.0.518)
2019-12-21 20:40:59 1.64MB icsharpcode 0.86.0.518
1
ICSharpCode.SharpZipLib.dll
2019-12-21 20:38:14 68KB ICSharpCode
1
ICSharpCode.SharpZipLib.dll
2019-12-21 20:23:35 236KB ICSharpCode SharpZipLib dll
1
ICSharpCode.SharpZipLib改过后的dll 不乱码
2019-12-21 20:17:08 76KB ICSharpCode.SharpZipLib改过后的dll
1
@相关博客@ http://blog.csdn.net/cleopard/article/details/42156393 @更多@ http://cleopard.download.csdn.net/ 只列举一个压缩帮助类,使用的是有要添加一个dll引用ICSharpCode.SharpZipLib.dll。另外说明一下的是,这个类压缩格式是ZIP的,所以文件的后缀写成 .zip。还有,如果用这个类来解压rar格式的压缩文件时会报错,就网上说的那个"Wrong Local header signature: 0x21726152"异常。只要解压ZIP压缩格式的压缩文件就不会报错了。 13份WPF经典开发教程 http://download.csdn.net/album/detail/1115 C#资料合辑二[C#桌面编程入门篇] http://download.csdn.net/album/detail/957 C#资料合辑一[C#入门篇] http://download.csdn.net/album/detail/669 [Csharp高级编程(第6版)](共8压缩卷) http://download.csdn.net/album/detail/667 10个[精品资源]Java学习资料合辑[一] http://download.csdn.net/album/detail/663 10个C#Socket编程代码示例 http://download.csdn.net/album/detail/631 6份GDI+程序设计资源整合[全零分] http://download.csdn.net/album/detail/625
2019-12-21 19:35:01 236KB C# 压缩 ICSharpCode SharpZipLib
1