반응형
Java에서 http post 본문에 json을 추가하는 방법
현재 작업 중인 안드로이드 앱의 JSON 데이터를 Java로 올리려고 합니다.아래가 유효한가요, 아니면 다른 방법으로 JSON 문자열을 눌러야 하나요?
HttpPost httpost = new HttpPost("http://test.localhost");
httpost.setEntity(new StringEntity("{\"filters\":true}"));
httpost.setHeader("Accept", "application/json");
httpost.setHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
//... other java code to execute the apache httpclient
잘 부탁드립니다.
를 설정할 필요가 있습니다.Content-Type
헤더를 로 향하다."application/json"
다른 건 다 좋아보여요.
언급URL : https://stackoverflow.com/questions/5999359/how-to-add-json-to-the-body-of-an-http-post-in-java
반응형
'bestsource' 카테고리의 다른 글
PowerShell 어레이에서 중복된 값 제거 (0) | 2023.04.09 |
---|---|
woocommerce 탭을 제거하는 방법 (0) | 2023.04.04 |
Wordpress Rewrite 또는 .htaccess를 통한 URL 개서 (0) | 2023.04.04 |
$wpdb-> 삽입이 작동하지 않습니다.오류 메시지 없음 (0) | 2023.04.04 |
Symfony 2.0 AJAX 어플리케이션에서 JSON으로 인코딩하는 방법 (0) | 2023.04.04 |