public void connSuccess( JSONObject jsonObject) {
System.out.println("注册时发送信息:" + jsonObject);
String rcuId = jsonObject.getString("Id");
}
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
new 类;
类.setRcuId(rcuId);
public String connSuccess( JSONObject jsonObject) {
System.out.println("注册时发送信息:" + jsonObject);
String rcuId = jsonObject.getString("Id");
return rcuId;
}
其他的类来调 connSuccess 方法