Android™
Android™
Get a Header Field of an Attachment
See more Email Object Examples
Demonstrates the Chilkat Email.GetAttachmentHeader method, which returns the value of a named header field of an attachment. The first argument is the zero-based attachment index and the second is the MIME header-field name. This example reads the Content-Disposition header of the first attachment.
Background: Each attachment is a MIME part with its own header block. Where
GetAttachmentAttr extracts a single named parameter, GetAttachmentHeader returns the entire value of a header field — for example the full Content-Disposition: attachment; filename="notes.txt" line. That is useful for inspecting or debugging exactly how a part is described, including any custom X- headers a sender may have added.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 GetAttachmentHeader method, which returns the value of a header field
// (by name) of an attachment. The first argument is the zero-based attachment index and the second is the
// MIME header-field name.
CkEmail email = new CkEmail();
email.put_Subject("Attachment header field");
email.AddStringAttachment("notes.txt","Some notes.");
// Get the Content-Disposition header of the first attachment (index 0).
String disp = email.getAttachmentHeader(0,"Content-Disposition");
Log.i(TAG, "Attachment 0 Content-Disposition: " + disp);
}
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."
}
}