I wrote some codes to download files from the Sever to the clients machines:
BufferedInputStream in = null;
try {
in = new BufferedInputStream(new FileInputStream(fileNpath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
String mimetype = servletContext.getMimeType(fileNpath);
response.setBufferSize(fSize);
response.setContentType(mimetype);
response.setHeader("Content-Disposition", "attachment; filename=\""+ fileName + "\"");
response.setContentLength(fSize);
try {
FileCopyUtils.copy(in, response.getOutputStream());
in.close();
response.getOutputStream().flush();
response.getOutputStream().close();
} catch (IOException e) {
e.printStackTrace();
}
This code works fine for the files smaller than 8M but not for larger files. I will be grateful if you guys give me some hints.
Thanks, Nick