Reputation: 7041
is it possible to use run a java class in command line to run a certain class or function in a running swing?
such as , when java Test asd
will setText a running swing Jlabel to asd
Upvotes: 4
Views: 1395
Reputation: 5179
The most straight forward way is to create an RMI method call.
It's built into java from the beginning, reasonably simple and lightweight.
Upvotes: 3
Reputation: 220762
The two programs run in separate processes. You will need to create an interface between the processes (or as Matthew put it: implement inter-process communication
). There are millions of ways to achieve this, just to name a few:
Upvotes: 9