0

HttpClientとFileUploadを使用するアップロードスニペットを見てきました。しかし、HttpClient + FileUploadのダウンロードをデモするスニペットは見つかりませんでした:(リンクを知っている場合、またはいくつかのデモプロジェクトでさえ共有してください

有益なコメントを高く評価しました:)

アンドリュー

4

1 に答える 1

1

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);
}
于 2011-03-17T06:05:02.507 に答える