Hi friends
A Simple Socket Processing How To. Learn to build a simple socket client, a socket server that handles one connection at a time, and a socket server.
we see the socket program in java
Client side :
import java.net.*; import java.io.*; class client { public static void main(String arg[]) { try { Socket s = new Socket("localhost",90); PrintWriter pr = new PrintWriter(s.getOutputStream(),true); pr.println("Hi");
System.out.println("Client : " + "Hi"); BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream())); System.out.println("Server : " + br.readLine()); } ...
Content management system (CMS) is an application that enables a website to manage its content efficiently. Every website grows organically over time in its contents and pages. So website becomes more complex with new pages and contents that will be added time by time. As a result, it will be more and more difficult and time consuming to manage the web pages manually (Static web design).