I am a beginner in JADE programming and I'm having problems running the JADE code in Java. Can someone help me in this??

I am using eclipse and I've added the jade jars, but when I try to run the JADE code it's not working.

import jade.core.Agent;

  public class HelloAgent extends Agent 
  { 
      protected void setup() 
      { 
          System.out.println("Hello World. ");
          System.out.println("My name is "+ getLocalName()); 
      }
  }
link|improve this question

71% accept rate
what problem? without knowing exact problem no one can help. – thinksteep Jan 17 at 21:06
"Code is not working" ! what is it printing in eclipse console window? Does it report any error ? Any exception? If so, paste the exception with the question - you will have better chance of getting an answer. – ring bearer Jan 17 at 21:47
2  
Pls add the code snippets to the original question posting, to make it easier to read. – Crollster Jan 18 at 1:08
code added.. check it and let me know if there is some errors and hoe to run it please.. – Ravi77 Jan 19 at 7:12
feedback

2 Answers

up vote 1 down vote accepted
  1. Check whether you have the right version: JADE 4.0+ supports getLocalName(); command
  2. The code looks fine, you can have problem with Eclipse interfacing, check that.
  3. Anyways, you can manually (and recommended) to compile and execute to test:

    java jade.Boot -agents Agent1:HelloAgent // to exexute

If this doesn't work then there is a problem with JADE installation

link|improve this answer
1  
Thanks its working:) – Ravi77 Jan 23 at 13:10
feedback

If you want to start JADE agents from Java code, this piece of code can give you an idea of how it's done:

jade.core.Runtime runtime = jade.core.Runtime.instance();
Profile profile = new ProfileImpl();
// profile.setParameter( ... );
AgentContainer container = runtime.createMainContainer( profile );
Agent agent = new HelloAgent();
// agent.addBehaviour( ... );
AgentController ac = container.acceptNewAgent( "hello-agent", agent);
ac.start();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.