Android™
Android™
Get the Size of an Attachment
See more Email Object Examples
Demonstrates the Chilkat Email.GetAttachmentSize method, which returns the size in bytes of the attachment at a given zero-based index, or -1 if the index does not identify an existing attachment. This example adds an attachment and prints its size.
Background: The size reported is that of the attachment's actual (decoded) data, not its larger Base64-encoded form on the wire. Knowing per-attachment sizes is handy for enforcing limits, showing a size next to each attachment in a UI, or deciding whether to save or skip a large part. The
-1 sentinel is how the method signals an out-of-range index rather than a zero-length attachment.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);
// Demonstrates the GetAttachmentSize method, which returns the size in bytes of the
// attachment at the given zero-based index. It returns -1 if the index does not identify
// an existing attachment.
CkEmail email = new CkEmail();
email.put_Subject("Attachment size");
email.AddStringAttachment("notes.txt","Some notes for the attachment.");
// Get the size in bytes of the first attachment (index 0).
int sz = email.GetAttachmentSize(0);
Log.i(TAG, "Attachment 0 size (bytes) = " + String.valueOf(sz));
}
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."
}
}