Commit 9f3d4d46 authored by 杨郁彬's avatar 杨郁彬

测试解密的JM路径

parent b187a900
......@@ -101,7 +101,9 @@ public class CisController {
request.getAttribute(HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE).toString();
path = path.replace("/cis/decrypted/","");
path = path.replace("\\","/");
String filePath = fileBasePath + path;
File rootPath = new File(fileBasePath);
String rootAbsoulutePath = rootPath.getAbsolutePath()+"Jm"+ File.separator;
String filePath = rootAbsoulutePath + path;
List<String> failFiles = new ArrayList<>();
this.recursiveDecrypted(new File(filePath),failFiles);
if(failFiles.size()>0){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment