I m using HttpClient latest version (4.x). And right now I m trying to do A GET Request. I just posting a Get request.
This is my Code;
public class Poster {
static boolean routing1 = true, routing2 = true;
static int counter1 = 0, counter2 = 0;
DefaultHttpClient oHtp = null;
HttpGet oHGet = null;
HttpResponse oHRes = null;
private void test(String fullAddress) throws Exception {
oHtp = new DefaultHttpClient();
oHGet = new HttpGet(fullAddress);
HttpResponse response = oHtp.execute(oHGet);
System.out.print(response.getStatusLine());
HttpEntity entity = response.getEntity();
if (entity != null) {
entity = new BufferedHttpEntity(entity);
// System.out.println(EntityUtils.toString(entity));
System.out.print(" entity is retrieved... ");
}
oHtp.getConnectionManager().shutdown();
}
}
I just execute it nicely. First is
new Poster().test("http://123.xl.co.id/profile.php");
and second is
new Poster().test("http://goklik.co.id/");
页: 1 我拿这个错误信息。
Sep 18, 2011 10:11:30 AM org.apache.http.client.protocol.ResponseProcessCookies processCookies WARNING: Cookie rejected: "[version: 0][name: CookiePst][value: 0149=xwGHF7HYDHLHQ84Isp/eSy9vu+Xq6cT12wxg1A==][domain: .mcore.com][path: /][expiry: Sun Sep 18 10:38:59 ICT 2011]". Illegal domain attribute "mcore.com". Domain of origin: "goklik.co.id"
我认识到,库克群岛参加了这次会议。 但我不理解警告意味着什么。 我也不知道如何解决该问题(Cookie没有被拒绝)。 希望能从你的角度来表达我的想法。