使用Java向REST API发送一对多参数可以通过以下步骤实现:
以下是一个示例代码,使用Java的HttpURLConnection库发送一对多参数的GET请求:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
public class RestApiExample {
public static void main(String[] args) {
try {
// 构建请求URL和参数
String baseUrl = "https://api.example.com/api";
String param1 = "value1";
String param2 = "value2";
String url = baseUrl + "?param1=" + URLEncoder.encode(param1, "UTF-8") + "¶m2=" + URLEncoder.encode(param2, "UTF-8");
// 创建HTTP连接
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
connection.setRequestMethod("GET");
// 发送请求并获取响应
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
StringBuilder response = new StringBuilder();
while ((line = reader.readLine()) != null) {
response.append(line);
}
reader.close();
// 解析响应
System.out.println("Response: " + response.toString());
} else {
System.out.println("Error: " + responseCode);
}
// 关闭连接
connection.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
}
请注意,这只是一个简单的示例代码,实际使用中可能需要根据API的要求进行适当的修改和处理。另外,对于POST请求或包含复杂参数的请求,可能需要使用其他库或工具来构建请求体和处理请求。
领取专属 10元无门槛券
手把手带您无忧上云