如何发送 POST 请求并获取文件响应?

发布于 2024-10-19 22:58:23 字数 93 浏览 3 评论 0原文

我想发送 POST 请求(如 html 表单)并获取文件(HTTP 标头:“Content-Disposition:附件;文件名 =“myfile.pdf”)。你能帮我吗?

I want to send POST request (like html form) and get file (HTTP header: "Content-Disposition: attachment; filename="myfile.pdf"). Can you help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温折酒 2024-10-26 22:58:23

您最好的选择可能是使用第三方库,例如 HttpClientHTMLUnit

如果您更喜欢使用标准 API 来完成此操作,那么并不那么复杂。

// Construct data
String data = URLEncoder.encode("key1", "UTF-8") + "=" + 
                                URLEncoder.encode("value1", "UTF-8");

data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" +
                                URLEncoder.encode("value2", "UTF-8");

// Send data
URL url = new URL("http://hostname:80/cgi");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(
        new InputStreamReader(conn.getInputStream()));

String line;
while ((line = rd.readLine()) != null) {
    // Process line...
}
wr.close();
rd.close();

Your best option is probably to use a third party library such as HttpClient or HTMLUnit.

If you prefer to do it with the standard API it's not that complicated.

// Construct data
String data = URLEncoder.encode("key1", "UTF-8") + "=" + 
                                URLEncoder.encode("value1", "UTF-8");

data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" +
                                URLEncoder.encode("value2", "UTF-8");

// Send data
URL url = new URL("http://hostname:80/cgi");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(
        new InputStreamReader(conn.getInputStream()));

String line;
while ((line = rd.readLine()) != null) {
    // Process line...
}
wr.close();
rd.close();
梦旅人picnic 2024-10-26 22:58:23

Check out HttpClient. There's a pretty comprehensive tutorial here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文