HttpResponse response = httpclient.execute(request);
ByteArrayOutputStream v2 = new ByteArrayOutputStream();
response.getEntity().writeTo(v2);
System.out.println("----Response------------------------------------");
System.out.println(v2.toString());
System.out.println("----------------------------------------");
ByteArrayOutputStream v2 = new ByteArrayOutputStream();
response.getEntity().writeTo(v2);
System.out.println("----Response------------------------------------");
System.out.println(v2.toString());
System.out.println("----------------------------------------");
No comments:
Post a Comment