try {
//Create connection
url = new URL("SOME URL");
connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
connection.setDoOutput(true);
But still this code invokes only the GET method of servlet. can any one please suggest me the answer?