Android™
Android™
Compress and Encrypt a Large File (Low and Constant Memory Footprint)
See more Compression Examples
Demonstrates how to compress and encrypt a large file such that the memory footprint remains low and constant.Note: This example requires Chilkat v9.5.0.99 or greater.
Chilkat Android™ Downloads
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
boolean success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkCompression compress = new CkCompression();
compress.put_Algorithm("deflate");
// Set encryption params.
// The possible values are the same as for the corresponding properties in the Chilkat Crypt2 class/object.
// The encoded IV and Key must be specified as hex.
CkJsonObject json = new CkJsonObject();
json.UpdateString("cryptAlgorithm","aes");
json.UpdateString("cipherMode","cbc");
json.UpdateInt("keyLength",128);
json.UpdateInt("paddingScheme",0);
json.UpdateString("encodedIV","000102030405060708090A0B0C0D0E0F");
json.UpdateString("encodedKey","000102030405060708090A0B0C0D0E0F");
// Do file-to-file compression+encryption in a single call.
String inPath = "qa_data/largeFile.dat";
String outPath = "c:/temp/qa_output/compressed_encrypted.dat";
success = compress.CompressEncryptFile(json,inPath,outPath);
if (success == false) {
Log.i(TAG, compress.lastErrorText());
return;
}
// We can do file-to-file decrypt/decompress like this:
String inPath2 = outPath;
String outPath2 = "c:/temp/qa_output/restored.dat";
success = compress.DecryptDecompressFile(json,inPath2,outPath2);
if (success == false) {
Log.i(TAG, compress.lastErrorText());
return;
}
// Note: The above decrypt + decompress is the equivalent of doing the same in these two steps:
CkCrypt2 crypt = new CkCrypt2();
crypt.put_CryptAlgorithm("aes");
crypt.put_CipherMode("cbc");
crypt.put_KeyLength(128);
crypt.put_PaddingScheme(0);
crypt.SetEncodedIV("000102030405060708090A0B0C0D0E0F","hex");
crypt.SetEncodedKey("000102030405060708090A0B0C0D0E0F","hex");
String decryptedPath = "c:/temp/qa_output/decrypted.dat";
success = crypt.CkDecryptFile(inPath2,decryptedPath);
if (success == false) {
Log.i(TAG, crypt.lastErrorText());
return;
}
String outPath3 = "c:/temp/qa_output/restored_in_two_steps.dat";
success = compress.DecompressFile(decryptedPath,outPath3);
if (success == false) {
Log.i(TAG, compress.lastErrorText());
return;
}
Log.i(TAG, "Success.");
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}