本文整理汇总了Java中org.apache.http.client.utils.URIBuilder.setPort方法的典型用法代码示例。如果您正苦于以下问题:Java URIBuilder.setPort方法的具体用法?Java URIBuilder.setPort怎么用?Java URIBuilder.setPort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.http.client.utils.URIBuilder
的用法示例。
在下文中一共展示了URIBuilder.setPort方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendGet
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
private JsonObject sendGet(URIBuilder target) {
try {
if (!target.getScheme().equals("matrix")) {
throw new IllegalArgumentException("Scheme can only be matrix");
}
String domain = target.getHost();
target.setScheme("https");
IRemoteAddress addr = resolver.resolve(target.getHost());
target.setHost(addr.getHost());
target.setPort(addr.getPort());
return sendGet(domain, target.build());
} catch (URISyntaxException e) {
throw new RuntimeException(e);
}
}
示例2: sendPut
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
private JsonObject sendPut(URIBuilder target, JsonObject payload) {
try {
if (!target.getScheme().equals("matrix")) {
throw new IllegalArgumentException("Scheme can only be matrix");
}
String domain = target.getHost();
target.setScheme("https");
IRemoteAddress addr = resolver.resolve(target.getHost());
target.setHost(addr.getHost());
target.setPort(addr.getPort());
return sendPut(domain, target.build(), payload);
} catch (URISyntaxException e) {
throw new RuntimeException(e);
}
}
示例3: transform
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
public URIBuilder transform(URI initial) {
URIBuilder builder = new URIBuilder(initial);
Entry mapping = mappings.get(initial.getHost());
if (mapping == null) {
return builder;
}
try {
URL target = new URL(mapping.getValue());
builder.setScheme(target.getProtocol());
builder.setHost(target.getHost());
if (target.getPort() != -1) {
builder.setPort(target.getPort());
}
return builder;
} catch (MalformedURLException e) {
log.warn("Skipping DNS overwrite entry {} due to invalid value [{}]: {}", mapping.getName(), mapping.getValue(), e.getMessage());
throw new ConfigurationException("Invalid DNS overwrite entry in homeserver client: " + mapping.getName(), e.getMessage());
}
}
示例4: buildUri
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
URI buildUri(URI baseUri, Map<String, String> params) {
String schemaAfterReplacements = replaceParamsInTemplate(schema, params);
URIBuilder builder = new URIBuilder();
builder.setScheme(baseUri.getScheme());
builder.setHost(baseUri.getHost());
builder.setPort(baseUri.getPort());
String path = baseUri.normalize().getPath() + schemaAfterReplacements;
builder.setPath(path.replaceAll("//", "/")); // Replace double slashes
for (String templateParamKey : templateParams.keySet()) {
String templateParamKeyAfterReplacements = replaceParamsInTemplate(templateParamKey, params);
String templateParamValueAfterReplacements = replaceParamsInTemplate(templateParams.get(templateParamKey), params);
builder.setParameter(templateParamKeyAfterReplacements, templateParamValueAfterReplacements);
}
URI result;
try {
result = builder.build();
} catch (URISyntaxException e) {
throw new WebmateApiClientException("Could not build valid API URL", e);
}
return result;
}
示例5: buildURIByConfig
import org.apache.http.client.utils.URIBuilder; //导入方法依赖的package包/类
/**
* 创建URI
*
* @return
*/
public URI buildURIByConfig() throws URISyntaxException {
URIBuilder builder = new URIBuilder();
builder.setHost(config.getHost());
builder.setPort(config.getPort());
builder.setPath(config.getPath());
builder.setScheme(config.getProtocol());
builder.setCharset(Charset.forName(config.getCharset()));
return builder.build();
}
示例6: 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);
}
}