Sample code for 30+ languages & platforms
Java

Get Current Date/Time as Timestamp (YYYY-MM-DDThh:mm:ssTZD)

Demonstrates how to get the current system date/time in YYYY-MM-DDThh:mm:ssTZD format.

Chilkat Java Downloads

Java
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    boolean success = false;

    CkDateTime dt = new CkDateTime();

    success = dt.SetFromCurrentSystemTime();

    //  Get a UTC time.
    boolean bLocal = false;
    String timestamp = dt.getAsTimestamp(bLocal);
    System.out.println("Current UTC Time: " + timestamp);

    //  Get a local time.
    bLocal = true;
    timestamp = dt.getAsTimestamp(bLocal);
    System.out.println("Current Local Time: " + timestamp);

    //  Sample output:
    //  
    //  Current UTC Time: 2022-03-01T00:48:58Z
    //  Current Local Time: 2022-02-28T18:48:58-06:00
  }
}