-
Notifications
You must be signed in to change notification settings - Fork 0
信息发送
殷泽凌 edited this page Feb 28, 2019
·
1 revision
信息发送的话,有三个方法
从CQRobot接口可以看出,有三个相关的方法
void sendDiscussMsg(String discussID, String msg);//讨论组消息发送
void sendGroupMsg(String groupID, String msg);//群消息发送
void sendPersonMsg(String qqID, String msg);//个人发送信息
当获取到CQRobot的实例之后,就可以使用该方法,比如
//创建一个HttpAPI的ws实例,本地端口为6700
CQRobot cqRobot=new HttpAPI("6700");
//发送消息hello bang到讨论组号为1234567的讨论组
cqRobot.sendDiscussMsg("1234567","hello bang");
//发送消息hello bang到群号为1234567的群
cqRobot.sendGroupMsg("1234567","hello bang");
//发送消息hello bang到QQ号为1234567的QQ
cqRobot.sendPersonMsg("1234567","hello bang");
这是个大饼饼