作者 crossoverJie

:sparkles: Introducing new features.私聊ok 判断账号是否存在3

... ... @@ -43,7 +43,7 @@ public class MsgHandler implements MsgHandle {
@Override
public void sendMsg(String msg) {
String[] totalMsg = msg.split("^^");
String[] totalMsg = msg.split(";;");
if (totalMsg.length > 1) {
//私聊
P2PReqVO p2PReqVO = new P2PReqVO();
... ...
... ... @@ -92,7 +92,7 @@ public class RouteRequestImpl implements RouteRequest {
throw new IOException("Unexpected code " + response);
}
String json = response.body().toString() ;
String json = response.body().string() ;
BaseResponse baseResponse = JSON.parseObject(json, BaseResponse.class);
//选择的账号不存在
... ...