Sample code for 30+ languages & platforms
Android™

Get a REST Response Header Value by Index

See more REST Examples

Demonstrates Rest.ResponseHdrValue, which returns the value of the response header at a zero-based index. The same index used with ResponseHdrName gives the corresponding field name.

Background. Response headers can be enumerated by index from 0 through NumResponseHeaders minus one, after ReadResponseHeader has been called.

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;

    CkRest rest = new CkRest();
    boolean bTls = true;
    boolean bAutoReconnect = true;
    success = rest.Connect("example.com",443,bTls,bAutoReconnect);
    if (success == false) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    success = rest.SendReqNoBody("GET","/api/items/123");
    if (success == false) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    int statusCode = rest.ReadResponseHeader();
    if (statusCode < 0) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    //  Return the value of the response header at a zero-based index.  Use the same index with
    //  ResponseHdrName to get the corresponding field name.
    int numHeaders = rest.get_NumResponseHeaders();
    int i;
    for (i = 0; i <= numHeaders - 1; i++) {
        String value = rest.responseHdrValue(i);
        if (rest.get_LastMethodSuccess() == false) {
            Log.i(TAG, rest.lastErrorText());
            return;
            }

        Log.i(TAG, "Header " + String.valueOf(i) + " value: " + value);
        }


  }

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