gpt4 book ai didi

java - 访问 HttpParams 的所有条目

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:54:25 24 4
gpt4 key购买 nike

有没有办法遍历 HttpParams 对象的所有条目?

其他人也有类似的问题 ( Print contents of HttpParams / HttpUriRequest? ),但答案并不奏效。

查看 BasicHttpParams 时我看到里面有一个HashMap,但是没有办法直接访问它。还有 AbstractHttpParams 不提供对所有条目的任何直接访问。

由于我不能依赖预定义的键名,理想的方法是遍历 HttpParams 封装的所有条目。或者至少得到一个键名列表。我错过了什么?

最佳答案

您的 HttpParams 用于在 HttpEntityEnclosedRequestBase 对象上创建 HttpEntity 集,然后您可以使用以下代码返回一个列表

final HttpPost httpPost = new HttpPost("http://...");

final ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("a_param", username));
params.add(new BasicNameValuePair("a_second_param", password));

// add the parameters to the httpPost
HttpEntity entity;
try
{
entity = new UrlEncodedFormEntity(params);
httpPost.setEntity(entity);
}
catch (final UnsupportedEncodingException e)
{
// this should never happen.
throw new IllegalStateException(e);
}
HttpEntity httpEntity = httpPost.getEntity();

try
{
List<NameValuePair> parameters = new ArrayList<NameValuePair>( URLEncodedUtils.parse(httpEntity) );
}
catch (IOException e)
{
}

关于java - 访问 HttpParams 的所有条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9379768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com