当我从我的 Struts2 应用程序下载文件时,会话在下载文件后过期。这不应该发生。
我们可以使用 setMaxInactiveInterval() 设置会话超时,但文件大小不是恒定的,下载时间取决于文件大小等。
你能提供任何解决方案吗?
我的文件下载代码如下。
InputStream fileInputStream = null;
File file = null;
String fileDir = "C:\\CAP\\FileDownload\\file\\";
String fileName = "SW.zip";
HttpSession sessio = null;
try {
sessio = request.getSession();
logger.debug("--------------->>>>"+sessio.getMaxInactiveInterval());
file = new File(fileDir+fileName);
logger.debug(":::::::::-->"+file.isFile());
fileInputStream = new FileInputStream(file);
ServletOutputStream outputStream = null;
response.addHeader("Content-Disposition", "attachment; filename="
+ fileName);
response.setContentLength((int) file.length());
outputStream = response.getOutputStream();
// Copy the contents of the file to the output stream
byte[] buf = new byte[1024];
int count = 0;
while ((count = fileInputStream.read(buf)) >= 0) {
outputStream.write(buf, 0, count);
logger.debug("Count Is : "+count);
}
logger.debug("====================compleated the file donlowding ====================");
} catch (IOException e) {
logger.error("ERROR while reading and wring file : "
+ e.getMessage());
}