本文整理汇总了Java中org.apache.http.client.utils.URIBuilder.setParameters方法的典型用法代码示例。如果您正苦于以下问题:Java URIBuilder.setParameters方法的具体用法?Java URIBuilder.setParameters怎么用?Java URIBuilder.setParameters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.http.client.utils.URIBuilder
的用法示例。
在下文中一共展示了URIBuilder.setParameters方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: httpGetRequest
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
public static String httpGetRequest(String url, Map<String, Object> params) throws URISyntaxException {
URIBuilder ub = new URIBuilder();
ub.setPath(url);
ArrayList<NameValuePair> pairs = covertParams2NVPS(params);
ub.setParameters(pairs);
HttpGet httpGet = new HttpGet(ub.build());
return getResult(httpGet);
}
示例2: generateRequestURI
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
/**
* 返回完整的请求URL;
*
* @param pathParams 路径参数;
* @param queryParams 查询参数;
* @return
*/
public URI generateRequestURI(Map<String, String> pathParams, Properties queryParams,
Charset encodingCharset){
// 生成路径;
String reallyActionPath = createActionPath(pathParams);
String path = PathUtils.concatPaths(serviceEndpoint.getContextPath(), servicePath, reallyActionPath);
path = PathUtils.absolute(path);
// 生成查询字符串;
URIBuilder uriBuilder = new URIBuilder();
uriBuilder.setCharset(encodingCharset);
if (serviceEndpoint.isHttps()) {
uriBuilder.setScheme("https");
} else {
uriBuilder.setScheme("http");
}
uriBuilder.setHost(serviceEndpoint.getHost());
uriBuilder.setPort(serviceEndpoint.getPort());
uriBuilder.setPath(path.toString());
List<NameValuePair> queryParameters = RequestUtils.createQueryParameters(queryParams);
uriBuilder.setParameters(queryParameters);
try {
return uriBuilder.build();
} catch (URISyntaxException e) {
throw new IllegalArgumentException(e.getMessage(), e);
}
}