Android™
Android™
Load MIME from a StringBuilder
See more MIME Examples
Demonstrates the Chilkat Mime.LoadMimeSb method, which parses complete MIME text from a StringBuilder and replaces the current MIME. The only argument is the StringBuilder.
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: When the MIME text already lives in a
StringBuilder — assembled in memory, or read and lightly edited — this loads it directly without an intermediate string copy. Its parsing behavior matches LoadMime; the difference is purely the source. For content that might include arbitrary binary bytes, use the BinData loader instead.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;
// Demonstrates the Mime.LoadMimeSb method, which parses complete MIME text from a StringBuilder
// and replaces the current MIME. The only argument is the StringBuilder.
// Put the MIME text into a StringBuilder (here loaded from a file, but it could come from
// anywhere).
CkStringBuilder sb = new CkStringBuilder();
success = sb.LoadFile("qa_data/message.eml","utf-8");
if (success == false) {
Log.i(TAG, sb.lastErrorText());
return;
}
CkMime mime = new CkMime();
success = mime.LoadMimeSb(sb);
if (success == false) {
Log.i(TAG, mime.lastErrorText());
return;
}
Log.i(TAG, "Content-Type: " + mime.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."
}
}