Android™
Android™
Socket Convenience Method: BuildHttpGetRequest
See more Socket/SSL/TLS Examples
Demonstrates the BuildHttpGetRequest method.Chilkat Android™ Downloads
// 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);
// The BuildHttpGetRequest method is a convenience method for building
// an HTTP GET request. Normally, an application would use Chilkat's HTTP or REST API's
// for sending HTTP requests.
CkSocket socket = new CkSocket();
String url = "http://www.chilkatsoft.com/test.asp?x=123&y=456";
String reqStr = socket.buildHttpGetRequest(url);
Log.i(TAG, reqStr);
Log.i(TAG, "----");
// The result is:
// GET /test.asp?x=123&y=456 HTTP/1.1
// Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
// Connection: keep-alive
// User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0
// Accept-Language: en-us,en;q=0.5
// Host: www.chilkatsoft.com
// The result is meant to look like a request from a browser.
// The same thing can be done using the Url and HttpRequest classes, but with more flexibility.
CkHttpRequest req = new CkHttpRequest();
req.SetFromUrl(url);
reqStr = req.generateRequestText();
Log.i(TAG, reqStr);
Log.i(TAG, "----");
// The result is:
// GET /test.asp?x=123&y=456 HTTP/1.1
// Host: domain
// Add some headers..
req.AddHeader("Host","www.chilkatsoft.com");
req.AddHeader("Accept-Language","en-us,en;q=0.5");
req.AddHeader("Some-Other-Header","123456");
reqStr = req.generateRequestText();
Log.i(TAG, reqStr);
// The result is now:
// GET /test.asp?x=123&y=456 HTTP/1.1
// Host: www.chilkatsoft.com
// Accept-Language: en-us,en;q=0.5
// Some-Other-Header: 123456
}
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."
}
}