gpt4 book ai didi

java - 将图像从 Java 上传到 PHP

转载 作者:行者123 更新时间:2023-11-29 03:20:09 25 4
gpt4 key购买 nike

我已经准备好接收图像的网络服务器设置,我想让 Java 客户端发送图像以及两个 POST 参数,在搜索网络时我只找到了使用 Apache 的 API 执行此操作的方法,但我我更喜欢用 vanilla Java 来做这件事。

我们将不胜感激。

最佳答案

类似...

String url = "https://asite.com";
URL obj = new URL(url);
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();

//add reuqest header
con.setRequestMethod("POST");
con.setRequestProperty("User-Agent", USER_AGENT);
con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");

String urlParameters = "aparam=1&anotherparam=2";

// Send post request
con.setDoOutput(true);
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(urlParameters);
wr.flush();
wr.close();

int responseCode = con.getResponseCode();

BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();

while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();

您可以添加更多 header ,并根据需要向输出流添加更多内容。

关于java - 将图像从 Java 上传到 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24171935/

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