Skip to content

Instantly share code, notes, and snippets.

@ssaurel
ssaurel / JavaHTTPServer.java
Created April 28, 2018 18:08
Simple HTTP Web Server made in Java for a tutorial on the SSaurel's Blog
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.ServerSocket;