본문 바로가기

ANDROID

HttpClient의 Timeout을 설정해주기.

HttpClient mClient = new DefaultHttpClient();

mClient.getParams().setParameter("http.protocol.expect-continue", false);

mClient.getParams().setParameter("http.connection.timeout", 2000);

mClient.getParams().setParameter("http.socket.timeout", 2000);


위와같이 설정해주시면 됩니다.