728x90
반응형
apache http utils 예제
- json 문자를 http post 방식으로 보내는 예제
라이브러리
source
CloseableHttpClient client = HttpClients.createDefault();
HttpPost httpPost = new HttpPost("http://localhost:8080/test");
String json = "{"test:test"}";
HttpEntity stringEntity = new StringEntity(json, ContentType.APPLICATION_JSON);
httpPost.setEntity(stringEntity);
CloseableHttpResponse response = client.execute(httpPost);
/** response 관련 후속 조치 로직을 넣어주면 됨. */
HttpEntity entity = response.getEntity();
EntityUtils.consume(entity);
'Java > utils' 카테고리의 다른 글
java utils date to string (date 타입을 string 변환) (0) | 2020.08.13 |
---|---|
[Java] ipv4, version4 ip 마스킹 (0) | 2020.08.11 |
댓글