Java Android作業中のアプリのJava $ ===にJSONデータを投稿しようとしています。以下は有効ですか、それとも別の方法で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"
に設定する必要があります。他のすべてがよさそうだ。