web-dev-qa-db-ja.com

単純なファイルダウンロードサーブレットの実装

単純なファイルダウンロードサーブレットを実装するにはどうすればよいですか?

アイデアは、GETリクエストでindex.jsp?filename=file.txt、ユーザーはダウンロードできます。 file.txtファイルサーブレットおよびファイルサーブレットから、そのファイルをユーザーにアップロードします。

ファイルを取得できますが、ファイルのダウンロードを実装するにはどうすればよいですか?

43
newbie

場合によります。上記のファイルがHTTPサーバーまたはサーブレットコンテナ経由で公開されている場合は、response.sendRedirect()経由で簡単にリダイレクトできます。

そうでない場合は、応答出力ストリームに手動でコピーする必要があります。

OutputStream out = response.getOutputStream();
FileInputStream in = new FileInputStream(my_file);
byte[] buffer = new byte[4096];
int length;
while ((length = in.read(buffer)) > 0){
    out.write(buffer, 0, length);
}
in.close();
out.flush();

もちろん、適切な例外を処理する必要があります。

51
ChssPly76

以下のようにサーブレットにアクセスできると仮定します

http://localhost:8080/myapp/download?id=7

サーブレットを作成してweb.xmlに登録する必要があります

web.xml

<servlet>
     <servlet-name>DownloadServlet</servlet-name>
     <servlet-class>com.myapp.servlet.DownloadServlet</servlet-class>
</servlet>
<servlet-mapping>
     <servlet-name>DownloadServlet</servlet-name>
     <url-pattern>/download</url-pattern>
</servlet-mapping>

DownloadServlet.Java

public class DownloadServlet extends HttpServlet {


    protected void doGet( HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

         String id = request.getParameter("id");

         String fileName = "";
         String fileType = "";
         // Find this file id in database to get file name, and file type

         // You must tell the browser the file type you are going to send
         // for example application/pdf, text/plain, text/html, image/jpg
         response.setContentType(fileType);

         // Make sure to show the download dialog
         response.setHeader("Content-disposition","attachment; filename=yourcustomfilename.pdf");

         // Assume file name is retrieved from database
         // For example D:\\file\\test.pdf

         File my_file = new File(fileName);

         // This should send the file to browser
         OutputStream out = response.getOutputStream();
         FileInputStream in = new FileInputStream(my_file);
         byte[] buffer = new byte[4096];
         int length;
         while ((length = in.read(buffer)) > 0){
            out.write(buffer, 0, length);
         }
         in.close();
         out.flush();
    }
}
62
Wen

リソースで試す

File file = new File("Foo.txt");
try (PrintStream ps = new PrintStream(file)) {
   ps.println("Bar");
}
response.setContentType("application/octet-stream");
response.setContentLength((int) file.length());
response.setHeader( "Content-Disposition",
         String.format("attachment; filename=\"%s\"", file.getName()));

OutputStream out = response.getOutputStream();
try (FileInputStream in = new FileInputStream(file)) {
    byte[] buffer = new byte[4096];
    int length;
    while ((length = in.read(buffer)) > 0) {
        out.write(buffer, 0, length);
    }
}
out.flush();
11
Sorter

ダウンロードを実装する最も簡単な方法は、ユーザーにファイルの場所を指示することです。ブラウザが自動的にそれを行います。

次の方法で簡単に達成できます。

HttpServletResponse.sendRedirect()
3
Winston Chen