资源简介
C#软件授权源码(亲测可用)

代码片段和文件信息
using System;
using System.IO;
using System.IO.Compression;
using System.Windows.Forms;
class clsZip
{
public void CompressFile(string sourceFile string destinationFile)
{
// make sure the source file is there
if (File.Exists(sourceFile) == false)
throw new FileNotFoundException();
// Create the streams and byte arrays needed
byte[] buffer = null;
FileStream sourceStream = null;
FileStream destinationStream = null;
GZipStream compressedStream = null;
try
{
// Read the bytes from the source file into a byte array
sourceStream = new FileStream(sourceFile FileMode.Open FileAccess.Read FileShare.Read);
// Read the source stream values into the buffer
buffer = new byte[sourceStream.Length];
int checkCounter = sourceStream.Read(buffer 0 buffer.Length);
if (checkCounter != buffer.Length)
{
throw new ApplicationException();
}
// Open the FileStream to write to
destinationStream = new FileStream(destinationFile FileMode.OpenOrCreate FileAccess.Write);
// Create a compression stream pointing to the destiantion stream
compressedStream = new GZipStream(destinationStream CompressionMode.Compress true);
// Now write the compressed data to the destination file
compressedStream.Write(buffer 0 buffer.Length);
}
catch (ApplicationException ex)
{
MessageBox.Show(ex.Message “压缩文件时发生错误:“ MessageBoxButtons.OK MessageBoxIcon.Error);
}
finally
{
// Make sure we allways close all streams
if (sourceStream != null)
sourceStream.Close();
if (compressedStream != null)
compressedStream.Close();
if (destinationStream != null)
destinationStream.Close();
}
}
public void DecompressFile(string sourceFile string destinationFile)
{
// make sure the source file is there
if (File.Exists(sourceFile) == false)
throw new FileNotFoundException();
// Create the streams and byte arrays needed
FileStream sourceStream = null;
FileStream destinationStream = null;
GZipStream decompressedStream = null;
byte[] quartetBuffer = null;
try
{
// Read in the compressed source stream
sourceStream = new FileStream(sourceFile FileMode.Open);
// Create a compression stream pointing to the destiantion stream
decompressedStream = new GZipStream(sourceStream CompressionMode.Decompress true);
// Read the footer to determine the length of the destiantion file
quartetBuffer = new byte[4];
int
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9728 2019-02-28 15:05 C#软件授权源码(亲测可用)\使用前需知.doc
文件 10240 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\bin\Debug\许可安装.exe
文件 24064 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\bin\Debug\许可安装.pdb
文件 21656 2015-12-11 21:03 C#软件授权源码(亲测可用)\软件授权\许可安装\bin\Debug\许可安装.vshost.exe
文件 490 2013-03-18 17:00 C#软件授权源码(亲测可用)\软件授权\许可安装\bin\Debug\许可安装.vshost.exe.manifest
文件 4597 2015-12-11 20:53 C#软件授权源码(亲测可用)\软件授权\许可安装\clsZip.cs
文件 987 2019-01-31 14:06 C#软件授权源码(亲测可用)\软件授权\许可安装\Form1.cs
文件 3095 2019-01-31 14:06 C#软件授权源码(亲测可用)\软件授权\许可安装\Form1.Designer.cs
文件 6025 2019-01-31 14:06 C#软件授权源码(亲测可用)\软件授权\许可安装\Form1.resx
文件 791 2019-01-31 14:05 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6094 2019-01-31 14:04 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 709 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\许可安装.csproj.FileListAbsolute.txt
文件 847 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\许可安装.csproj.GenerateResource.Cache
文件 10240 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\许可安装.exe
文件 180 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\许可安装.Form1.resources
文件 24064 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\许可安装.pdb
文件 180 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可安装\obj\Debug\许可安装.Properties.Resources.resources
文件 473 2015-12-11 20:30 C#软件授权源码(亲测可用)\软件授权\许可安装\Program.cs
文件 1366 2015-12-11 20:30 C#软件授权源码(亲测可用)\软件授权\许可安装\Properties\AssemblyInfo.cs
文件 2876 2015-12-11 20:30 C#软件授权源码(亲测可用)\软件授权\许可安装\Properties\Resources.Designer.cs
文件 5612 2015-12-11 20:30 C#软件授权源码(亲测可用)\软件授权\许可安装\Properties\Resources.resx
文件 1099 2015-12-11 20:30 C#软件授权源码(亲测可用)\软件授权\许可安装\Properties\Settings.Designer.cs
文件 249 2015-12-11 20:30 C#软件授权源码(亲测可用)\软件授权\许可安装\Properties\Settings.settings
文件 3584 2015-12-11 20:54 C#软件授权源码(亲测可用)\软件授权\许可安装\许可安装.csproj
文件 25745 2015-12-11 21:16 C#软件授权源码(亲测可用)\软件授权\许可打包\bin\Debug\Bin.dll
文件 9728 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可打包\bin\Debug\许可打包.exe
文件 24064 2015-12-11 21:08 C#软件授权源码(亲测可用)\软件授权\许可打包\bin\Debug\许可打包.pdb
文件 4597 2015-12-11 20:48 C#软件授权源码(亲测可用)\软件授权\许可打包\clsZip.cs
文件 612 2019-01-31 14:07 C#软件授权源码(亲测可用)\软件授权\许可打包\Form1.cs
文件 2834 2019-01-31 14:07 C#软件授权源码(亲测可用)\软件授权\许可打包\Form1.Designer.cs
............此处省略103个文件信息
- 上一篇:Winform可视化打印模板设计(完整版)
- 下一篇:C#手写识别程序源码(完整版)
相关资源
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
- 基于c#的实验室设备管理系统621530
评论
共有 条评论