我正在使用 apache http 库,需要知道如何向 HTTP GET 请求添加参数。我已经查看了如何在 Android 中向 HTTP GET 请求添加参数?但接受的答案将参数添加到 HTTP POST。到目前为止,这是我的代码,但它不起作用。
HttpGet get = new HttpGet("https://server.com/stuff");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("count", "5"));
HttpParams p = get.getParams();
p.setParameter("length", "5");
get.setParams(p);