Source Code : Get allowed http methods
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Get allowed http methods
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.methods.OptionsMethod;
import java.util.Enumeration;
public class OptionsMethodExample {
public static void main(String args[]) {
HttpClient client = new HttpClient();
client.getParams().setParameter("http.useragent", "Test Client");
OptionsMethod method = new OptionsMethod("http://www.google.com");
try{
int returnCode = client.executeMethod(method);
Enumeration list = method.getAllowedMethods();
while(list.hasMoreElements()) {
System.err.println(list.nextElement());
}
} catch (Exception e) {
System.err.println(e);
} finally {
method.releaseConnection();
}
}
}
Thank with us