Hi
am new to Java and am developing a multi agent application using Jade. I have coded 1 agent using Java and the other agent using vc++.
My problem is communication between java and vc++.
1) I need to run the vc++ program within the java program for which i am using the following code.

try
 {
         ( "C:\\Jade\\Debug\\program.exe" );
  }
 catch(Throwable t)
 {
         System.out.print(t.getMessage());

 }

The java program compiles without any error. But the .exe file is not being executed.
2) Also i have send in an integer data to the vc++ program from java. That data has to be sent every 15 min and so the corresponding output from vc++ program should change. can anybody tell me how to do this??
3) I am writing the vc++ output in a .txt file. This .txt file has to be read by another java program!!
I would really appreciate it if anybody could assist me
Tx in advance

Recommended Answers

All 2 Replies

I implemented the code in the website mentioned. But it is still not working!! Is there any other solution??
Tx

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.