Sample code for 30+ languages & platforms
Android™

DateTime - Get in ISO 8601 Compatible Format

Demonstrates the GetAsIso8601 method to return the date/time in an ISO 8601 compatible format.

Note: This example is only valid in Chilkat v9.5.0.65 or later.

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);

    CkDateTime dateTime = new CkDateTime();

    dateTime.SetFromCurrentSystemTime();

    boolean bLocal = false;
    Log.i(TAG, "YYYY-MM-DD: " + dateTime.getAsIso8601("YYYY-MM-DD",bLocal));
    Log.i(TAG, "YYYY-MM-DDThh:mmTZD: " + dateTime.getAsIso8601("YYYY-MM-DDThh:mmTZD",bLocal));
    Log.i(TAG, "YYYY-MM-DDThh:mm:ssTZD: " + dateTime.getAsIso8601("YYYY-MM-DDThh:mm:ssTZD",bLocal));

    //  Sample output:

    //  	YYYY-MM-DD: 2016-12-02
    //  	YYYY-MM-DDThh:mmTZD: 2016-12-02T07:04Z
    //  	YYYY-MM-DDThh:mm:ssTZD: 2016-12-02T07:04:34Z

  }

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