如何将json添加到getHttp java请求中?

时间:2014-04-13 09:32:37

标签: java android json

我想根据我的身份验证令从服务器获取一些数据。

根据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

0 个答案:

没有答案