1.调整网关对外接口

This commit is contained in:
cdf
2024-11-07 23:21:45 +08:00
parent c85df36f32
commit 739b697137
4 changed files with 10 additions and 6 deletions

View File

@@ -148,6 +148,7 @@ public class GwSendUtil {
try {
HttpReturn ret = HttpCaller.invokeReturn(builder.build());
String responseStr = ret.getResponseStr();//获取响应的文本串
System.out.println("获取响应的文本串:"+responseStr);
if (responseStr.indexOf("\\\"") != -1) {
responseStr = responseStr.replace("\\\"", "\"");
}