文件下载

master
chengqf 2 years ago
parent ce60afd9b2
commit a912650a2d

@ -106,14 +106,17 @@ public class FileServiceImpl implements FileService {
if(map!=null&&map.get("syncIp")!=null) { if(map!=null&&map.get("syncIp")!=null) {
String result = IDCUtils.post(map.get("syncIp").toString()+"/spssync/file/downloadFile", params); String result = IDCUtils.post(map.get("syncIp").toString()+"/spssync/file/downloadFile", params);
JSONObject object = JSON.parseObject(result);
boolean success = false; boolean success = false;
if(object.getInteger("code")==20000) { if(IDCUtils.isJson(result)) {
String[] files = params.get("fileName").toString().split(","); JSONObject object = JSON.parseObject(result);
success = true;
for(String str:files) { if(object.getInteger("code")==20000) {
if(!idcService.signleDownloadFile(map.get("syncIp").toString(), str)) String[] files = params.get("fileName").toString().split(",");
success = false; success = true;
for(String str:files) {
if(!idcService.signleDownloadFile(map.get("syncIp").toString(), str))
success = false;
}
} }
} }
if(!success) if(!success)

Loading…
Cancel
Save