음 이건 xml 형태 만들기 귀찮고 전달 형태를 알고 있을때 문자열로 처리 HttpClient httpclient = HttpClientBuilder.create().build(); final String parameters = "?name=더미&group=더미2"; HttpPost httppost = new HttpPost("https://요청URL"+parameters); httppost.setHeader(HTTP.CONTENT_TYPE, "application/xml; charset=UTF-8"); /*전달 XML string*/ final String msg = "\n" + " 아이쿠\n" + " 아이나\n" + ""; httppost.setEntity(new StringEntity(msg)); ..