gpt4 book ai didi

java - 对于 HttpGet 方法,什么是 getParams()?

转载 作者:搜寻专家 更新时间:2023-10-31 08:18:23 31 4
gpt4 key购买 nike

org.apache.http.client.methods.HttpGet;

HttpGet method = new HttpGet(url.toExternalForm());
method.getParams()

这些参数是什么?它们是查询字符串吗?似乎没有简单的方法可以使用 org.apache.http.client.methods.HttpGet 添加查询字符串

最佳答案

根据Http Client tutorial ,你可以这样做:

URI uri = new URIBuilder()
.setScheme("http")
.setHost("www.google.com")
.setPath("/search")
.setParameter("q", "httpclient")
.setParameter("btnG", "Google Search")
.setParameter("aq", "f")
.setParameter("oq", "")
.build();
HttpGet httpget = new HttpGet(uri);
System.out.println(httpget.getURI());

关于java - 对于 HttpGet 方法,什么是 getParams()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2989429/

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