}
HttpPost httppost = new HttpPost(url.getPath());
httppost.setEntity(entity);
request = httppost;
} else if (cmd.hasOption('i')) {
HttpHead httphead = new HttpHead(url.getPath());
request = httphead;
} else {
HttpGet httpget = new HttpGet(url.getPath());
request = httpget;
}