本文整理匯總了Java中org.apache.http.client.methods.HttpHead.METHOD_NAME屬性的典型用法代碼示例。如果您正苦於以下問題:Java HttpHead.METHOD_NAME屬性的具體用法?Java HttpHead.METHOD_NAME怎麽用?Java HttpHead.METHOD_NAME使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.http.client.methods.HttpHead
的用法示例。
在下文中一共展示了HttpHead.METHOD_NAME屬性的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createHttpRequest
private static HttpRequestBase createHttpRequest(String method, URI uri, HttpEntity entity) {
switch(method.toUpperCase(Locale.ROOT)) {
case HttpDeleteWithEntity.METHOD_NAME:
return addRequestBody(new HttpDeleteWithEntity(uri), entity);
case HttpGetWithEntity.METHOD_NAME:
return addRequestBody(new HttpGetWithEntity(uri), entity);
case HttpHead.METHOD_NAME:
return addRequestBody(new HttpHead(uri), entity);
case HttpOptions.METHOD_NAME:
return addRequestBody(new HttpOptions(uri), entity);
case HttpPatch.METHOD_NAME:
return addRequestBody(new HttpPatch(uri), entity);
case HttpPost.METHOD_NAME:
HttpPost httpPost = new HttpPost(uri);
addRequestBody(httpPost, entity);
return httpPost;
case HttpPut.METHOD_NAME:
return addRequestBody(new HttpPut(uri), entity);
case HttpTrace.METHOD_NAME:
return addRequestBody(new HttpTrace(uri), entity);
default:
throw new UnsupportedOperationException("http method not supported: " + method);
}
}
示例2: HttpRedirect
public HttpRedirect(final String method, final URI uri) {
super();
if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) {
this.method = HttpHead.METHOD_NAME;
} else {
this.method = HttpGet.METHOD_NAME;
}
setURI(uri);
}
示例3: HttpRedirect
public HttpRedirect(final String method, final URI uri) {
super();
if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) {
this.method = HttpHead.METHOD_NAME;
} else {
this.method = HttpGet.METHOD_NAME;
}
setURI(uri);
}
示例4: exists
static Request exists(GetRequest getRequest) {
Request request = get(getRequest);
return new Request(HttpHead.METHOD_NAME, request.endpoint, request.params, null);
}
示例5: ping
static Request ping() {
return new Request(HttpHead.METHOD_NAME, "/", Collections.emptyMap(), null);
}
示例6: Head
public static Request Head(final URI uri) {
return new Request(new InternalHttpRequest(HttpHead.METHOD_NAME, uri));
}
示例7: getHttpMethod
@Override
public String getHttpMethod() {
return HttpHead.METHOD_NAME;
}