Android™
Android™
Access a Part in a Multipart MIME Entity
See more MIME Examples
Demonstrates the Chilkat Mime.PartAt method, which provides live access to the direct child at a zero-based index. The first argument is the index and the second is a Mime object that will reference the child. Modifying it modifies the child stored in the parent tree.
Note: The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: This is how you reach into a multipart message to inspect or edit an individual part — read a part's
Content-Type, extract an attachment's body, or change a part in place. The key point is that the returned Mime is a live reference, not a copy, so edits to it flow back into the parent tree. Loop from 0 to NumParts - 1 to visit every direct child.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;
CkMime mime = new CkMime();
success = mime.LoadMimeFile("qa_data/multipart_message.eml");
if (success == false) {
Log.i(TAG, mime.lastErrorText());
return;
}
// PartAt provides LIVE access to a direct child part. The 1st argument is the zero-based index
// and the 2nd is a Mime object that will reference the child. Modifying it modifies the child in
// the parent tree.
int n = mime.get_NumParts();
Log.i(TAG, "Number of parts: " + String.valueOf(n));
CkMime part = new CkMime();
int i;
for (i = 0; i <= n - 1; i++) {
success = mime.PartAt(i,part);
if (success == false) {
Log.i(TAG, mime.lastErrorText());
return;
}
Log.i(TAG, "Part " + String.valueOf(i) + " Content-Type: " + part.contentType());
}
}
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."
}
}