fix:解决gamma自动处理 获取 ftp 文件错误问题

This commit is contained in:
orgin 2023-11-20 15:46:09 +08:00
parent 565871aea5
commit a86f4c384b

View File

@ -126,7 +126,7 @@ public class Sample_G_Analysis {
spectrumPathProperties = SpringContextUtils.getBean(SpectrumPathProperties.class);
ftpUtil = SpringContextUtils.getBean(FTPUtil.class);
String sampleFilePath = sampleData.getInputFileName();
String pathName = ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + File.separator +
String pathName = ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH +
sampleFilePath.substring(0, sampleFilePath.lastIndexOf(StringPool.SLASH));
String fileName = sampleFilePath.substring(sampleFilePath.lastIndexOf(StringPool.SLASH)+1);
@ -171,7 +171,7 @@ public class Sample_G_Analysis {
FileOperation.saveOrAppendFile(savePath, reportContent, false);
}catch (Exception e){
e.printStackTrace();
log.error(e.getMessage());
log.error("Sample_G_Analysis", e);
throw new GAnalyseException("Sample Analyse Error at "+DateUtils.formatDate(new Date(),"yyyy-MM-dd HH:mm:ss"));
}finally {