@At("/download/?")
@Ok("raw")
public File download(String id,HttpServletRequest request) {
String path = fileService.getPath(id);
File f = new File(path);
if(f.exists()) {
return f;
}
return null;
}
此处path存储的文件名例如是20180602564.txt,如何使用户下载下来的文件名是abc.txt