public class HttpDelete extends HttpRequestBase
HTTP DELETE方法在RFC2616的 9.7节中定义 :
The DELETE method requests that the origin server delete the resource identified by the Request-URI. [...] The client cannot be guaranteed that the operation has been carried out, even if the status code returned from the origin server indicates that the action has been completed successfully.
| Modifier and Type | Field and Description |
|---|---|
static String |
METHOD_NAME |
headergroup, params| Constructor and Description |
|---|
HttpDelete() |
HttpDelete(String uri) |
HttpDelete(URI uri) |
| Modifier and Type | Method and Description |
|---|---|
String |
getMethod()
返回该请求使用HTTP方法,如
GET ,
PUT ,
POST ,或其他。
|
getConfig, getProtocolVersion, getRequestLine, getURI, releaseConnection, setConfig, setProtocolVersion, setURI, started, toStringabort, clone, completed, isAborted, reset, setCancellable, setConnectionRequest, setReleaseTriggeraddHeader, addHeader, containsHeader, getAllHeaders, getFirstHeader, getHeaders, getLastHeader, getParams, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeader, setHeaders, setParamsequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitabort, isAbortedaddHeader, addHeader, containsHeader, getAllHeaders, getFirstHeader, getHeaders, getLastHeader, getParams, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeader, setHeaders, setParamspublic static final String METHOD_NAME
public HttpDelete()
public HttpDelete(URI uri)
public HttpDelete(String uri)
IllegalArgumentException - 如果uri无效。
public String getMethod()
HttpUriRequest复制
GET ,
PUT ,
POST ,或其他。
getMethod在接口
HttpUriRequest
getMethod在
HttpRequestBase
Copyright © 1999–2017 The Apache Software Foundation. All rights reserved.