I have an application where I open a socket;
server = new ServerSocket(25000, 1, InetAddress.getByName("localhost"));
And a client that connects to him;
private Socket socket;
this.socket = new Socket("localhost", 25000);
The program w...
asked by
22.02.2018 / 12:39