40
Çalıştığım bir Android uygulaması için java'da bazı JSON verilerini göndermeye çalışıyorum. Aşağıdaki geçerli mi yoksa JSON dizesini farklı bir şekilde itmeli miyim? Java'da bir http gönderisinin gövdesine json ekleme
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
Sen
"application/json"
için
Content-Type
başlığını belirlesin peşin