The console (i.e. the standard input and output streams) are provided by the operating system to the java process at startup time. I know of no operating system that can provide more than one console.
I therefore recommend that you start the clients and servers as separate Java processes, and have them communicate over TCP. Depending on your objectives, you could implement an existing communication protocol such as Telnet or IRC, which would allow you to use existing client applications for these protocols with all the bells and whistles these provide, but possiblly burden you with implementing rather more commands than you probably need, or define your own simple protocol, in which case you have to implement the clients as well.
One way to go about the latter is to do something like:
public class Client {
public static void main(String[] args) throws Exception {
Socket s = new Socket(args[0], Integer.parseInt(args[1]));
new Repeater(System.in, s.getOutputStream()).start();
new Repeater(s.getInputStream(), System.out).start();
}
}
public class Server {
public static void main(String[] args) throws Exception {
ServerSocket ss = new ServerSocket(Integer.parseInt(args[0]));
for (;;) {
Socket s = ss.accept();
// simply echo for now. You can do more interesting things here ...
new Repeater(s.getInputStream(), s.getOutputStream()).start();
}
}
}
class Repeater extends Thread {
final InputStream in;
final OutputStream out;
public Repeater(InputStream in, OutputStream out) {
this.in = in;
this.out = out;
}
@Override public void run() {
try {
byte[] buf = new byte[4096];
int r;
while ((r = in.read(buf)) != -1) {
out.write(buf, 0, r);
out.flush();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
You can then do:
java Server 55555
and in another console
java Client localhost 55555
Every line you then type into that console will then be echoed back to you from the server.
Good luck with your project!