Network Programming, TCP/IP Client, Get The Time

Network Programming, TCP/IP Client, Get The Time

With Java, it’s easy to write a client program that connects to a TCP/IP server to get the date and time. This is very useful for network testing.

Insert your favorite Web server name into the String named server. The program should then display the date and time at the server. However, be aware that your favorite server may not cooperate and you may need to tray another server:

 import java.net.*;import java.io.*;import java.util.*;class SocketTime01{	public static void main(String[] args){		String server = "www.yourFavoriteServer.com";		int port = 13; //daytime port	try{			Socket socket = new Socket(server,port);//get socket		BufferedReader inputStream = 					new BufferedReader(new InputStreamReader(							socket.getInputStream()));			//Get an input stream from the socket		System.out.println(inputStream.readLine() +					" at " + server);//receive and display		socket.close();		}//end try		catch(UnknownHostException e){			System.out.println(e);			System.out.println(					"Connection Failure. Are you online?");		}//end catch UnknownHostException		catch(IOException e){System.out.println(e);}	}//end main}//end class SocketTime01
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across