body().string

version1
admin 2 years ago
parent 436f57c8f2
commit 1c92bffe13

@ -249,7 +249,7 @@ public class IdcServiceImpl implements IdcService {
try {
boolean success=true;
Response response = client.newCall(request).execute();
result = response.body().toString();
result = response.body().string();
logger.info("fetchData-->"+result);
JSONObject json = JSONObject.parseObject(result);
if(isLastLevel()) {
@ -287,7 +287,8 @@ public class IdcServiceImpl implements IdcService {
String result = "";
try {
Response response = client.newCall(request).execute();
result = response.body().toString();
result = response.body().string();
logger.info("post-result-->"+result);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();

Loading…
Cancel
Save