HttpGet get = new HttpGet(url[i]);
get.setHeader("Cookie", "user=kevin.lam92@gmail.com;auth=e3eeba822df43aaa86abe30bb320b082");
get.addHeader("Accept", "application/xml");
get.addHeader("Content-Type", "application/xml");
HttpResponse responsePost;
responsePost = client.execute(get);
HttpEntity resEntity = responsePost.getEntity();
if (resEntity != null) {
results[i] = resEntity.getContentLength();
System.out.println(results[i]);
}