使用Eclipse创建多个JADE代理

时间:2014-07-29 06:08:03

标签: java eclipse agents-jade

熟悉JADE的人是否知道如何使用eclipse一次创建多个jade代理并在其中发送消息?如果您没问题,如果您提供您的电子邮件地址,我可以在对JADE有任何疑问时与您联系。提前致谢

1 个答案:

答案 0 :(得分:0)

这实际上有效。我试过了。

String name = "Alice" ;
AID alice = new AID( name, AID.ISLOCALNAME );

AgentContainer c = getContainerController();

        try {
            AgentController a = c.createNewAgent(name,"com.sender.Receiver", null);
            a.start();
            System.out.println(alice.getLocalName() + " Created");
        }catch (Exception e){
            e.printStackTrace();
        }