提交 aca3fbf8 authored 作者: zhangshuang's avatar zhangshuang

ftp文件服务器与配置文件修改

上级 a16d7fae
...@@ -28,6 +28,9 @@ public class FileDownLoadServiceImpl implements FileDownLoadService { ...@@ -28,6 +28,9 @@ public class FileDownLoadServiceImpl implements FileDownLoadService {
} }
File file = new File(fileAddress + "/" + fileName); File file = new File(fileAddress + "/" + fileName);
boolean fileExist = false; boolean fileExist = false;
if(file.length() != 0){
fileExist = true;
}
if(fileExist){ if(fileExist){
setFileDownloadHeader(httpServletRequest,response,fileName); setFileDownloadHeader(httpServletRequest,response,fileName);
OutputStream os = null; OutputStream os = null;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论