|
|
|
@ -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*/
|
|
|
|
|