群发测试 @param args
(String[] args)
| 12 | * @param args |
| 13 | */ |
| 14 | public static void main(String[] args) throws InterruptedException { |
| 15 | String appid = ""; |
| 16 | List<String> toWxids = Arrays.asList("39002402513@chatroom", "24099789585@chatroom", "52873617987@chatroom"); |
| 17 | for (String toWxid : toWxids) { |
| 18 | MessageApi.postText(appid,toWxid,"test",""); |
| 19 | int i = new Random().nextInt(6); |
| 20 | Thread.sleep(i*1000); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | } |