Sample code for 30+ languages & platforms
Android™

Get MessageSet IDs as a Comma-Separated String

See more IMAP Examples

Demonstrates the Chilkat MessageSet.ToCommaSeparatedStr method, which returns the unique identifiers as a comma-separated string in ascending numeric order. It takes no arguments; an empty set returns an empty string. This example inserts a few ids and prints them.

Background: This is the fully expanded, human-readable form — every identifier listed explicitly, such as 1,2,3,5. It is handy for logging or display. When you need the terse form that collapses consecutive runs into ranges (for example 1:3,5), use ToCompactString instead. Like the compact form, the returned string contains only the numeric values and not the HasUids setting.

Chilkat Android™ Downloads

Android™
// 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 MessageSet.ToCommaSeparatedStr method, which returns the unique identifiers
    //  as a comma-separated string in ascending numeric order.  It takes no arguments.

    CkMessageSet msgSet = new CkMessageSet();

    //  Build a set by inserting individual identifiers.  The insertion order does not matter;
    //  the identifiers are kept in ascending order and duplicates are ignored.
    msgSet.InsertId(3);
    msgSet.InsertId(1);
    msgSet.InsertId(2);
    msgSet.InsertId(5);

    //  Get the identifiers as a comma-separated string.
    String csv = msgSet.toCommaSeparatedStr();
    Log.i(TAG, csv);
    //  Output: 1,2,3,5

  }

  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."
  }
}