java flink 发送Post请求
在Flink中发送POST请求可以使用Java中的HttpURLConnection类来实现。以下是一个示例代码:
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class PostRequestExample {
public static void main(String[] args) throws Exception {
// POST请求的目标URL
String url = "http://example.com/api";
// 创建URL对象
URL obj = new URL(url);
// 创建HttpURLConnection对象
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
// 设置请求方法为POST
con.setRequestMethod("POST");
// 启用输出流
con.setDoOutput(true);
// 设置POST请求的参数
String postData = "param1=value1¶m2=value2";
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(postData);
wr.flush();
wr.close();
// 获取响应码
int responseCode = con.getResponseCode();
System.out.println("Response Code: " + responseCode);
// 读取响应内容
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// 打印响应内容
System.out.println("Response: " + response.toString());
}
}
在上述代码中,我们首先创建了一个URL对象,然后通过该URL对象创建了一个HttpURLConnection对象。接下来,我们设置了请求方法为POST,并启用了输出流。然后,我们将POST请求的参数写入输出流中,并发送请求。最后,我们获取了响应码和响应内容,并打印出来。
请注意,上述代码只是一个示例,你需要根据实际情况进行修改和适配。另外,为了在Flink中使用该代码,你需要将其放入到一个适当的Flink函数中,比如map或者flatMap函数中
原文地址: https://www.cveoy.top/t/topic/ieDG 著作权归作者所有。请勿转载和采集!