Network Programming, Simple TCP/IP Server

Network Programming, Simple TCP/IP Server

The following program is a simple version of a TCP/IP server that responds to requests from a client and delivers files. I wrote it to be as small as possible to make it easy to understand so that you can get started in the right direction and write your own improved version. There is no security manager so when the program is running, your computer is subject to invasion from the network.

To test the program locally, run the program and then point your browser to http://localhost/PathAndFile, where PathAndFile specifies the path to a file relative to the folder where the program is running. For example, if the folder where the program is running also contains the source file for this program, point your browser to:

 http://localhost/ServerHttp01.java

Your browser should download the file and allow you to specify where to save it. If an exception is thrown, the program will terminate. Otherwise, you will have to terminate it manually:

 import java.net.*;import java.io.*;import java.util.*;import java.util.zip.DataFormatException;public class ServerHttp01{	PrintWriter outputStream;	Socket socket;  	public static void main(String[] argv){		new ServerHttp01();	}//end main	//-----------------------------------------------------//  ServerHttp01(){//constructor    	try{  			//Get a server socket on port 80			ServerSocket serverSocket = new ServerSocket(80);			while(true){//loop and listen				socket = serverSocket.accept();//block     				//Get input and output text streams				BufferedReader inputStream = 						new BufferedReader(new InputStreamReader(								socket.getInputStream()));				outputStream = 						new PrintWriter(new OutputStreamWriter(								socket.getOutputStream()),true);                           				//Get output stream for byte data				DataOutputStream byteOutput = new DataOutputStream(						socket.getOutputStream());				//Get request from client				String request = inputStream.readLine();  				//Respond to the request. Only supports GET request				StringTokenizer stringTokenizer = 															new StringTokenizer(request);				if(stringTokenizer.nextToken().equals("GET")){					request = stringTokenizer.nextToken();					if(request.indexOf("/") == 0){					request = request.substring(1);//strip the /					}//end if(request...					//Try to read the file into the a byte array.					FileInputStream fileInputStream = 							new FileInputStream(request);					byte[] data = 							new byte[fileInputStream.available()];					fileInputStream.read(data);					//Send the bytes in the array to the client.					byteOutput.write(data);					byteOutput.flush();					socket.close();				}//end if stringTokenizer....				else//not a GET request					throw new DataFormatException("Not GET");			}//end while loop		}catch(Exception e){			System.err.println(e);//display at server			outputStream.println(//send to client					"

" + e + "

"); try{ socket.close(); }catch(IOException ex){System.err.println(ex);} }//end catch }//end constructor}//end class ServerHttp01

Share the Post:
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

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as