2
I created a java SE application that runs in the background, without swing or anything... But how do I control this application? for example, in python applications we can execute commands (python something.py -c command1 -u command2), so I can have a control over the application, as I would with my java application?
And can I control the application through another java application? For example: a swing panel with options to pause the thread of the controlled application, continue, change configuration information, etc.
The application will run on Linux only.
There is no other way, no network use?
– felipe.rce
You can use server/client socket on the same machine, using loopback ip 127.0.0.1
– Fabricio
I can’t think of anything right now
– Fabricio