Java
Java
Example: Http.RemoveRequestHeader method
Demonstrates how to call the RemoveRequestHeader method.Also see: Chilkat Http Default and Auto-Filled Headers
Chilkat Java Downloads
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;
CkHttp http = new CkHttp();
// Add a request header.
http.SetRequestHeader("X-Something","1234");
String responseBody = http.quickGetStr("https://chilkatsoft.com/helloWorld.txt");
// Examine the request header we just sent..
System.out.println(http.lastHeader());
System.out.println("----");
// Output:
// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip
// X-Something: 1234
// Remove the request header we previously added:
http.RemoveRequestHeader("X-Something");
responseBody = http.quickGetStr("https://chilkatsoft.com/helloWorld.txt");
System.out.println(http.lastHeader());
// Output:
// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip
}
}