|
@ -93,6 +93,12 @@ public class JwSmjkService {
|
|
|
} catch (Exception ex) {
|
|
|
ex.printStackTrace();
|
|
|
}
|
|
|
|
|
|
if(re.equals("[{}]"))
|
|
|
{
|
|
|
re = "";
|
|
|
}
|
|
|
|
|
|
return re;
|
|
|
}
|
|
|
}
|
|
@ -228,6 +234,11 @@ public class JwSmjkService {
|
|
|
throw new Exception("null response.");
|
|
|
}
|
|
|
|
|
|
if(re.equals("[{}]"))
|
|
|
{
|
|
|
re = "";
|
|
|
}
|
|
|
|
|
|
return re;
|
|
|
}
|
|
|
catch (Exception ex)
|
|
@ -271,6 +282,10 @@ public class JwSmjkService {
|
|
|
throw new Exception("null response.");
|
|
|
}
|
|
|
|
|
|
if(result.equals("[{}]"))
|
|
|
{
|
|
|
result = "";
|
|
|
}
|
|
|
return result;
|
|
|
|
|
|
}
|