javanetwork

Tutorial Socket Programming :Example Creating the Socket connection in java

java.net package is used for Socket Programming in java. Lets look at the java.net.Socket class which is inherited from java.lang.Object. An instance of the SocketImpl class do all the work for Socket. Here is a example to test the socket connection [...]
javanetwork

Tutorial Socket Programming : InterProcess Communication and Protocols

The InterProcess communication is based on socket pairs, one belonging to a communication process. InterProcess communication can be achieved by transmitting some data in a message between a socket in one process to the another socket in another [...]