最简单的java http 服务器

package testreadline;
import java.net.*;
import java.io.*;

public class test 
{
	public static void main(String[] args) throws IOException 
	{
		ServerSocket serversocket=new ServerSocket(80);
		while(true)
		{
			Socket socket=serversocket.accept();
			new ServerThread(socket).start();   			
		}		
	
	}
}

class ServerThread  extends Thread
{
	Socket socket=null;
	ServerThread(Socket socket)throws IOException 
	{
		this.socket=socket; 
	}
	public void run() 
	{
		String info = "HTTP/1.1 200 OK
" + 
                "Server: Apache-Coyote/1.1
" + 
                "Content-Type: text/html;charset=utf-8
" + 
                "Content-Length: 1021
" + 
                "Date: Wed, 09 Dec 2009 05:00:27 GMT
" + 
                "
"+"<H1>港港都是泪,还是早停困!</H1>"; 
		OutputStream os;
		try 
		{
			os = socket.getOutputStream();
			os.write(info.getBytes("utf-8")); 
			os.flush(); 
			socket.close();
		} 
		catch (Exception e1)
		{			
			e1.printStackTrace();
		}        
		
	}
	
	
}
原文地址:https://www.cnblogs.com/egai/p/3599596.html