Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How download file using java spark?

I want to write simple rest api for file download.

I cant find docs about it as I understood I need to set mimetype='application/zip' for response, but not clear how to return stream.

http://sparkjava.com/

update: resolved here example code:

public static void main(String[] args) {
    //setPort(8080);
    get("/hello", (request, responce) -> getFile(request,responce));
}

private static Object getFile(Request request, Response responce) {
    File file = new File("MYFILE");
    responce.raw().setContentType("application/octet-stream");
    responce.raw().setHeader("Content-Disposition","attachment; filename="+file.getName()+".zip");
    try {

        try(ZipOutputStream zipOutputStream = new ZipOutputStream(new BufferedOutputStream(responce.raw().getOutputStream()));
        BufferedInputStream bufferedInputStream = new BufferedInputStream(new FileInputStream(file)))
        {
            ZipEntry zipEntry = new ZipEntry(file.getName());

            zipOutputStream.putNextEntry(zipEntry);
            byte[] buffer = new byte[1024];
            int len;
            while ((len = bufferedInputStream.read(buffer)) > 0) {
                zipOutputStream.write(buffer,0,len);
            }
        }
    } catch (Exception e) {
        halt(405,"server error");
    }

    return null;
like image 566
kain64b Avatar asked Dec 02 '14 08:12

kain64b


1 Answers

What you need is similar to this thread. You only need to close the OutputStream and return the raw HTTPServletResponse:

try {
    ...
    zipOutputStream.flush();
    zipOutputStream.close();
} catch (Exception e) {
    halt(405,"server error");
}
return responce.raw();
like image 96
an3m0na Avatar answered Oct 22 '22 18:10

an3m0na