|
|
|
@ -629,7 +629,8 @@ public class IdcServiceImpl implements IdcService {
|
|
|
|
|
public void downloadFile(String fileName, HttpServletResponse response) {
|
|
|
|
|
OutputStream os;
|
|
|
|
|
String filePathSlash = filePath.substring(filePath.length() - 1).equals("/") ? "" : fileName.substring(0, 1).equals("/") ? "" : "/";
|
|
|
|
|
String sourceFileName = filePath +filePathSlash+imagePath +fileName;
|
|
|
|
|
// String sourceFileName = filePath +filePathSlash+imagePath +fileName;
|
|
|
|
|
String sourceFileName = fileName;
|
|
|
|
|
try {
|
|
|
|
|
if (FileUtils.isFileExist(sourceFileName)) {
|
|
|
|
|
byte[] bytes = FileUtils.readFileByBytes(sourceFileName);
|
|
|
|
|