我想根据我的身份验证令从服务器获取一些数据。
根据REST原理,我需要使用GET方法。
但我不想在请求网址中发送用户身份验证令。
如何将json添加到httpGet实例?
// create HttpClient
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(url);
// 5. set json to StringEntity
StringEntity se = new StringEntity(json);
// 6. set httpPost Entity
httpGet.setEntity(se);
httpGet.setEntity
会抛出错误
The method setEntity(StringEntity) is undefined for the type HttpGet