android httpclient 发送 PATCH 请求

 Put 用于全部更新

 Patch 用于部分更新

 重写一下 HttpPut 或 HttpPost 的 getMethod 方法

android httpclient 发送 PATCH 请求
/**
 * Send a patch request
 */
public class HttpPatch extends HttpPut {

    public HttpPatch(String url) {
        super(url);
    }

    @Override
    public String getMethod() {
        return "PATCH";
    }
}
android httpclient 发送 PATCH 请求

 

  

android httpclient 发送 PATCH 请求,布布扣,bubuko.com

android httpclient 发送 PATCH 请求

上一篇:生成requirement.txt文件


下一篇:Android - 使用资源(resource)