google 또는 naver 등에 쿼리를 날려서 이미지, 웹페이지를 받아오는데

계속해서 오류가 Host is unresolved : 주소 : 80 이렇게 뜨고 못받아오네요.....

 HttpGet httpget = new HttpGet(  url );
    ResponseHandler<String> responseHandler = new BasicResponseHandler();

  try{
   String data = httpclient.execute(httpget, responseHandler);

  }catch(Exception e ){
   Log.d("a a", "Exception: "+e.getMessage());
  }


주소를 ip로 바꾸라는 방법 말고 다른 방법으로 해결하신분 없으세요...?? ㅠㅠ
정말 답답합니다. 도와주세요

profile