如何在 JAVA 中以字符串数组作为主体发出 HttpPut 请求?
How to make HttpPut request with string array as body to it in JAVA?
我需要调用一个 rest api put 方法,该方法接受一个参数 Body(类型为 arrray[string]),该参数将传递给“BODY”而不是查询参数。
以下是该参数接受的值:
[
"string"
]
这些是我尝试拨打电话的步骤:
创建了一个用于签署请求的 oauth 消费者对象和用于执行请求的 httpclient 对象
consumer = new CommonsHttpOAuthConsumer("abc", "def");
requestConfig = RequestConfig.custom().setConnectTimeout(300 * 1000).build();
httpClient = HttpClientBuilder.create().setDefaultRequestConfig(requestConfig).build();
使用 json
创建放置请求
URL url = new URL("http://www.example.com/resource");
String[] dfNames = {};
dfNames[0] = "test";
putreq = new HttpPut(url);
putreq.setHeader("Id","xyz");
StringEntity input = new StringEntity(dfNames); //Getting compilation error
input.setContentType("application/json");
putreq.setEntity(input);
正在执行获取响应码的请求
updateresponse = httpClient.execute(putreq);
int updatehttpResponseCode = updateresponse.getStatusLine().getStatusCode();
System.out.println("post Response Code :: " + updatehttpResponseCode);
if (updatehttpResponseCode == 200)
{
System.out.println("PuT request worked);
}
else
{
System.out.println("PuT request not worked");
}
输出:
我在 运行 时遇到编译错误,因为字符串实体 class 不能接受字符串数组。是否还有其他 class 可以接受 string[] 数组?
如评论中所述,HTTP PUT 正文只是一个字符串,因此只需将数组转换为字符串(使用 Arrays.toString() 或任何其他方式)并使用它。
我需要调用一个 rest api put 方法,该方法接受一个参数 Body(类型为 arrray[string]),该参数将传递给“BODY”而不是查询参数。
以下是该参数接受的值:
[
"string"
]
这些是我尝试拨打电话的步骤:
创建了一个用于签署请求的 oauth 消费者对象和用于执行请求的 httpclient 对象
consumer = new CommonsHttpOAuthConsumer("abc", "def");
requestConfig = RequestConfig.custom().setConnectTimeout(300 * 1000).build();
httpClient = HttpClientBuilder.create().setDefaultRequestConfig(requestConfig).build();
使用 json
创建放置请求 URL url = new URL("http://www.example.com/resource");
String[] dfNames = {};
dfNames[0] = "test";
putreq = new HttpPut(url);
putreq.setHeader("Id","xyz");
StringEntity input = new StringEntity(dfNames); //Getting compilation error
input.setContentType("application/json");
putreq.setEntity(input);
正在执行获取响应码的请求
updateresponse = httpClient.execute(putreq);
int updatehttpResponseCode = updateresponse.getStatusLine().getStatusCode();
System.out.println("post Response Code :: " + updatehttpResponseCode);
if (updatehttpResponseCode == 200)
{
System.out.println("PuT request worked);
}
else
{
System.out.println("PuT request not worked");
}
输出:
我在 运行 时遇到编译错误,因为字符串实体 class 不能接受字符串数组。是否还有其他 class 可以接受 string[] 数组?
如评论中所述,HTTP PUT 正文只是一个字符串,因此只需将数组转换为字符串(使用 Arrays.toString() 或任何其他方式)并使用它。