Thành viên | Nội dung |
radiogaga
Ta đây thủy tinh, có tài gọi mưa hô gió ...
Sơn Tinh ta đây : có tài là đốn gốc cây, đánh hốc cây ... 44 bài
| cái này thì công nhận hay thật, chia sẻ cho bà con coi -----------------------
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, "An Error occured during compression", 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 ( ); } }
|
radiogaga
Ta đây thủy tinh, có tài gọi mưa hô gió ...
Sơn Tinh ta đây : có tài là đốn gốc cây, đánh hốc cây ... 44 bài
| Đơn giản nó chỉ bao gồm: đầu tiên tạo 1 stream byte từ file source tống nó vô buffer, tạo stream gzip dùng stream này tống cái buffer vào stream của thằng destination.
Chuối nhỉ ?
|
|