Sample code for 30+ languages & platforms
Android™

Download S3 CloudTrail Log and Un-Gzip

See more Amazon S3 Examples

Demonstrates how to download a Amazon CloudTrail log from an S3 bucket. The file in this example is a .json.gz. The file is uncompressed and the JSON parsed.

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

    boolean success = false;

    // This requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();

    http.put_AwsAccessKey("AWS_ACCESS_KEY");
    http.put_AwsSecretKey("AWS_SECRET_KEY");
    http.put_AwsRegion("us-west-2");
    http.put_AwsEndpoint("s3-us-west-2.amazonaws.com");

    String bucketName = "chilkat.logs";
    String objectName = "/AWSLogs/957491831129/CloudTrail/us-west-1/2016/11/12/957491831129_CloudTrail_us-west-1_20161112T1335Z_umXfD4RxHE5nDGuI.json.gz";
    String localFilePath = "qa_output/cloudTrailLog.json.gz";

    success = http.S3_DownloadFile(bucketName,objectName,localFilePath);
    if (success != true) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    int statusCode = http.get_LastStatus();
    if (statusCode != 200) {
        Log.i(TAG, "Failed to download, response status code = " + String.valueOf(statusCode));
        return;
        }

    String jsonPath = "qa_output/cloudTrailLog.json";
    CkGzip gzip = new CkGzip();
    success = gzip.UncompressFile(localFilePath,jsonPath);
    if (success == false) {
        Log.i(TAG, gzip.lastErrorText());
        return;
        }

    CkJsonObject json = new CkJsonObject();
    json.LoadFile(jsonPath);
    json.put_EmitCompact(false);
    Log.i(TAG, json.emit());

    // Sample JSON is shown below.
    // Go to http://tools.chilkat.io/jsonParse.cshtml 
    // and copy/paste the JSON into the online tool to generate parsing code.

    // {
    //   "Records": [
    //     {
    //       "eventVersion": "1.05",
    //       "userIdentity": {
    //         "type": "Root",
    //         "principalId": "954591834127",
    //         "arn": "arn:aws:iam::954591834127:root",
    //         "accountId": "954591834127",
    //         "accessKeyId": "ASIAJ3DEMXUXI43B6FYQ",
    //         "sessionContext": {
    //           "attributes": {
    //             "mfaAuthenticated": "false",
    //             "creationDate": "2016-11-12T13:09:31Z"
    //           }
    //         }
    //       },
    //       "eventTime": "2016-11-12T13:34:39Z",
    //       "eventSource": "cloudtrail.amazonaws.com",
    //       "eventName": "DescribeTrails",
    //       "awsRegion": "us-west-1",
    //       "sourceIPAddress": "98.228.98.57",
    //       "userAgent": "console.amazonaws.com",
    //       "requestParameters": {
    //         "trailNameList": [
    //         ]
    //       },
    //       "responseElements": null,
    //       "requestID": "c2a0376c-a8dc-11e6-89e7-85ac5ce5ee56",
    //       "eventID": "eb5afd70-dae1-41f0-82b4-91c3c936d9ba",
    //       "eventType": "AwsApiCall",
    //       "recipientAccountId": "954591834127"
    //     }
    //   ]
    // }

  }

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