signleDownloadFile文件大于0返回成功

master
chengqf 2 years ago
parent 909c9aa39f
commit 4ca88f8361

@ -1178,10 +1178,11 @@ public class IdcServiceImpl implements IdcService {
.post(body)
.addHeader("Content-Type", "application/x-www-form-urlencoded")
.build();
int total=0;
try {
Response result = client.newCall(request).execute();
String msg = result!=null ? result.message().length()>200 ? result.message().substring(0,200) : result.message() : "";
int total = 0;
if (result!=null&&result.isSuccessful()&&MediaType.parse("application/force-download").equals(result.body().contentType())) {
try (InputStream inputStream = result.body().byteStream()) {
@ -1220,7 +1221,7 @@ public class IdcServiceImpl implements IdcService {
e.printStackTrace();
}
return true;
return (total>0);
}
/*获取转发服务地址当前值允许单向只使用参数upper_server_ip*/

Loading…
Cancel
Save