gpt4 book ai didi

java - 设置http请求的类型

转载 作者:可可西里 更新时间:2023-11-01 16:50:39 25 4
gpt4 key购买 nike

如何使用 org.apache.* 库设置 http 请求的类型?例如,如果我需要 POST 请求:

HttpPost hp=new HttpPost("http://server.com");

获取

HttpGet hg=new HttpGet("http://server.com");

它工作正常。但在我的项目中,我只想对所有类型的请求使用一个函数,因为我还需要PUTDELETE 请求。

那么,如何在 DefaultHttpClient 中设置请求类型或(如果不可能)如何创建 PUTDELETE 请求?

最佳答案

HttpMethod httpMethod = new HttpPost("http://server.com");

在您的常用函数中,您可以使用 httpMethod.getName();,它将返回您正在执行的 HTTP 调用的类型。

PUT/DELETE 方法的语法是:

  HttpMethod httpMethod = new PutMethod("http://server.com");
HttpMethod httpMethod = new DeleteMethod("http://server.com");

关于java - 设置http请求的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8795808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com