|
@@ -23,7 +23,7 @@ import com.ruoyi.framework.config.ServerConfig;
|
|
|
|
|
|
/**
|
|
|
* 通用请求处理
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@RestController
|
|
@@ -39,7 +39,7 @@ public class CommonController
|
|
|
|
|
|
/**
|
|
|
* 通用下载请求
|
|
|
- *
|
|
|
+ *
|
|
|
* @param fileName 文件名称
|
|
|
* @param delete 是否删除
|
|
|
*/
|
|
@@ -52,8 +52,8 @@ public class CommonController
|
|
|
{
|
|
|
throw new Exception(StringUtils.format("文件名称({})非法,不允许下载。 ", fileName));
|
|
|
}
|
|
|
- String realFileName = System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1);
|
|
|
- String filePath = RuoYiConfig.getDownloadPath() + fileName;
|
|
|
+ String realFileName = StringUtils.substringAfter(fileName, Constants.RESOURCE_PREFIX);
|
|
|
+ String filePath = RuoYiConfig.getProfile() + realFileName;
|
|
|
|
|
|
response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);
|
|
|
FileUtils.setAttachmentResponseHeader(response, realFileName);
|