How to make a server to allow the connection to the socket 6123?
SolutionFollowing example shows how to make a server to allow the connection to the socket 6123 by using server.accept() method of ServerSocket class and sock.getInetAddress() method of Socket class.
import java.io.IOException; import java.net.InetAddress; import java.net.ServerSocket; import java.net.Socket; public class SocketDemo { public static void main(String[] args) { try { ServerSocket server = new ServerSocket(6123); while (true) { System.out.println("Listening"); Socket sock = server.accept(); InetAddress addr = sock.getInetAddress(); System.out.println("Connection made to " + addr.getHostName() + " ( " + addr.getHostAddress() + ")"); pause(5000); sock.close(); } } catch (IOException e) { System.out.println("Exception detected: " + e); } } private static void pause(int ms) { try { Thread.sleep(ms); }catch (InterruptedException e) {} } }Result
The above code sample will produce the following result.
Listening Terminate batch job (Y/N)? n Connection made to 112.63.21.45
java_networking.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4