4142434445464748495051
notifyStartRequest(); HttpMethodBase m; if (rangeList != null) { m = new RangedGetMethod(url, rangeList); } else { m = new GetMethod(url); } InputStream in = null; NotifyingFileInputStream nin = null; try { int res = client.executeMethod(m);
292293294295296297298299300301302
if (post) { method = new PostMethod(location); } else { method = new GetMethod(location); } method.setFollowRedirects(true); client.executeMethod(method);