HttpClient + FileUpload 如何从 servlet 下载文件到我的应用程序?

发布于 2024-10-22 03:26:30 字数 137 浏览 3 评论 0原文

我看过使用 HttpClient 和 FileUpload 的上传片段。但我找不到任何演示 HttpClient+FileUpload 下载的片段:(如果您知道链接甚至一些演示项目请分享,

非常感谢有用的评论:)

Andrew

I have watched the upload snippets which use HttpClient and FileUpload. But I couldn't find any snippet which demo the HttpClient+FileUpload download :( If you know links or even some demo projects share please

Much appreciated useful comments :)

Andrew

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

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

发布评论

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

评论(1

榆西 2024-10-29 03:26:30

在 Web 上下文中,您可以使用 ServletOutputStream。这里资源路径信息作为 HTTP 上的额外路径信息传递。

final ServletOutputStream out = res.getOutputStream();
res.setContentType("application/octet-stream");
String file = req.getPathInfo();
if (file == null) {
  out.println("Extra path info was null; should be a resource to view");
  return;
}

// Convert the resource to a URL
URL url = getServletContext().getResource(file);
if (url == null) { 
  out.println("Resource " + file + " not found");
  return;
}

//Serve the file
InputStream in = url.openStream();
byte[] buf = new byte[4 * 1024]; // 4K buffer
int bytesRead;
while ((bytesRead = in.read(buf)) != -1) {
  out.write(buf, 0, bytesRead);
}

Within the web context, you can use a ServletOutputStream. Here resource path info is passed as the extra path info on the HTTP.

final ServletOutputStream out = res.getOutputStream();
res.setContentType("application/octet-stream");
String file = req.getPathInfo();
if (file == null) {
  out.println("Extra path info was null; should be a resource to view");
  return;
}

// Convert the resource to a URL
URL url = getServletContext().getResource(file);
if (url == null) { 
  out.println("Resource " + file + " not found");
  return;
}

//Serve the file
InputStream in = url.openStream();
byte[] buf = new byte[4 * 1024]; // 4K buffer
int bytesRead;
while ((bytesRead = in.read(buf)) != -1) {
  out.write(buf, 0, bytesRead);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文