本文整理匯總了Java中org.apache.http.client.utils.URIBuilder.addParameters方法的典型用法代碼示例。如果您正苦於以下問題:Java URIBuilder.addParameters方法的具體用法?Java URIBuilder.addParameters怎麽用?Java URIBuilder.addParameters使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.http.client.utils.URIBuilder
的用法示例。
在下文中一共展示了URIBuilder.addParameters方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: buildUrl
import org.apache.http.client.utils.URIBuilder; //導入方法依賴的package包/類
private URI buildUrl(String subPath, List<NameValuePair> queryParams)
{
URIBuilder uB= new URIBuilder()
.setScheme(serverConfig.isUseHTTPS() ? "https" : "http")
.setHost(serverConfig.getServerName())
.setUserInfo(serverConfig.getUserName(), serverConfig.getPassword())
.setPath(subPath);
if (queryParams != null)
{
uB.addParameters(queryParams);
}
try {
return uB.build();
} catch (URISyntaxException e) {
throw new NextcloudApiException(e);
}
}
示例2: getUrl
import org.apache.http.client.utils.URIBuilder; //導入方法依賴的package包/類
/**
* Creates a full URL for a given path with additional parameters. Same as {@link #getUrl(String)}, but adds the parameters in the URI.
*
* @param path path relative to server url; can start with / but should not include the server context path
* @param parameters url parameters to be added to the url. If the given argument is {@code null}, nothing will be added to the url.
* If the given argument is an empty array, it will force a "?" at the end of the url.
* @return full url as URI
* @throws IllegalArgumentException if path or parameters cannot be parsed into an URI
* @throws NullPointerException if path is null
*/
public URI getUrl(String path, List<NameValuePair> parameters) {
// add server url and path
URIBuilder uriBuilder = new URIBuilder(getUrl(path));
// add parameters
if(parameters != null) {
uriBuilder.addParameters(parameters);
}
try {
return uriBuilder.build();
} catch (URISyntaxException e) {
throw new IllegalArgumentException(e);
}
}