1

I wrote the code on JSP that will display all the files on Remote hosting server, when I click on the file, I should be able to download it. what the best way to implement download?

Right now, that JSP will able to show me all the files in that directory for example --> 'C:/'

Any help is appreciated

Here is the sample jsp page

<%@ page import="java.io.*" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Report</title>
</head>
<body>
<h1>Files</h1>
<ul>

    <%
        String root = "c:/";
        java.io.File file;
        java.io.File dir = new java.io.File(root);

        String[] list = dir.list();



        if (list.length > 0) {

            for (int i = 0; i < list.length; i++) {
                file = new java.io.File(root + list[i]);

        if (file.isFile()) {
    %>
    <li><a href="/<%=file.getAbsolutePath()+file.getName()%>" target="_top"><%=list[i]%>
    </a><br>
            <%
    }
  }
}
%>
</ul>
</body>
</html>
jimagic
  • 4,045
  • 2
  • 28
  • 49

2 Answers2

2

I am posting here for anybody here who looking for answer on it.

On JSP file, use this for link

<<li><a href="/reportFetch?filePath=<%=file.getAbsolutePath()%>&fileName=<%=file.getName()%>" target="_top"><%=list[i]%></a><br>

and create the servlet

...

import javax.activation.MimetypesFileTypeMap;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;

import java.io.*;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@WebServlet("/reportFetch")
public class Report extends HttpServlet {

    private static final long serialVersionUID = 1L;

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
        String filePath = request.getParameter("filePath");
        String fileName = request.getParameter("fileName");

        MimetypesFileTypeMap mimeTypesMap = new MimetypesFileTypeMap();
        String mimeType = mimeTypesMap.getContentType(request.getParameter("fileName"));

        response.setContentType(mimeType);
        response.setHeader("Content-disposition", "attachment; filename=" + fileName);

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

    }


    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
    }
}
jimagic
  • 4,045
  • 2
  • 28
  • 49
0

For some reason, the above answers failed, but this solution works:

index.jsp

<form action="download" method="GET">
    <input type="hidden" name="filePath" value="<%=file.getAbsolutePath()%>" />
    <input type="hidden" name="fileName" value="<%=file.getName()%>" />
    <input type="submit" value="DOWNLOAD" />
</form>

DownloadServlet.java

import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;

import javax.activation.MimetypesFileTypeMap;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@WebServlet("/download")
public class DownloadServlet extends HttpServlet {
  
  @Override
  protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    
    String filePath = req.getParameter("filePath");
    String fileName = req.getParameter("fileName");
    
    MimetypesFileTypeMap mimeTypesMap = new MimetypesFileTypeMap();
    String mimeType = "APPLICATION/OCTET-STREAM";
    if (null != fileName && !"".equals(fileName)) {
      mimeType = mimeTypesMap.getContentType(fileName);
    } else {
      fileName = "file.unknown";
    }
    
    if (filePath != null) {
      resp.setContentType(mimeType);
      resp.setHeader("Content-disposition", "attachment; filename=" + fileName);
      OutputStream out = resp.getOutputStream();
      FileInputStream in = new FileInputStream(filePath);
      byte[] buffer = new byte[4096];
      int length;
      while ((length = in.read(buffer)) > 0) {
        out.write(buffer, 0, length);
      }
      in.close();
      out.flush();
    } else {
      resp.getOutputStream().println("400 Bad Request, please provide the required parameters: /download?filePath=...&fileName=...");
    }
  }
  
  @Override
  protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    this.doGet(req, resp);
  }
  
}
dixdragan
  • 71
  • 1