|
@ -94,9 +94,9 @@ public class JwSmjkService {
|
|
|
ex.printStackTrace();
|
|
|
}
|
|
|
|
|
|
if(re.equals("[{}]"))
|
|
|
if(re.contains("[{}]"))
|
|
|
{
|
|
|
re = "";
|
|
|
re = re.replace("[{}]","[]");
|
|
|
}
|
|
|
|
|
|
return re;
|
|
@ -234,9 +234,9 @@ public class JwSmjkService {
|
|
|
throw new Exception("null response.");
|
|
|
}
|
|
|
|
|
|
if(re.equals("[{}]"))
|
|
|
if(re.contains("[{}]"))
|
|
|
{
|
|
|
re = "";
|
|
|
re = re.replace("[{}]","[]");
|
|
|
}
|
|
|
|
|
|
return re;
|
|
@ -282,9 +282,9 @@ public class JwSmjkService {
|
|
|
throw new Exception("null response.");
|
|
|
}
|
|
|
|
|
|
if(result.equals("[{}]"))
|
|
|
if(result.contains("[{}]"))
|
|
|
{
|
|
|
result = "";
|
|
|
result = result.replace("[{}]","[]");
|
|
|
}
|
|
|
return result;
|
|
|
|