HttpGet httpGet = new HttpGet(url);
HttpResponse response = httpclient.execute(httpGet);
HttpEntity entity = response.getEntity();
String body = EntityUtils.toString(entity);
EntityUtils.consume(entity);
httpGet.releaseConnection();
return body;
}
protected String[] dropLines(String quoteList, int n) {
String[] lines = quoteList.split("\n");