String A = "8wehw3";
  String B = "awk24";
  String C = "USA";
        
  GetMethod getMethod = new GetMethod("http://어쩌구저쩌구"); //일부러 이런 겁니다.
  getMethod.addRequestHeader("Q" , "600");
  getMethod.addRequestHeader("W", "tegeso");
  getMethod.addRequestHeader("E", "tgwseog39");
  getMethod.setQueryString("A=" +A+ "B=" +B+ "C=" +C);
          
  try {
       HttpClient httpClient = new HttpClient();
       httpClient.getParams().setContentCharset("utf-8");
              
       int statusCode = httpClient.executeMethod(getMethod);
       String xmlString = getMethod.getResponseBodyAsString();
       if ( xmlString!=null ) {
                  xmlString = xmlString.trim();
              }
              
          } catch (Exception e) {
              e.printStackTrace();
          } finally {
           getMethod.releaseConnection();
          }
   }

위 HttpClient는 Java환경 에서는 잘 돌아갑니다.

근데 안드로이드 에서는 액티비티 화면만 들어가도 튕기 더군요..

위 소스가 안드로이드 환경에서 맞지않는 부분이 있으면 좀 알려 주시면 감사하겠습니다.