39 lines
1.0 KiB
Java
39 lines
1.0 KiB
Java
import java.io.* ;
|
|
import java.net.* ;
|
|
import java.util.* ;
|
|
|
|
public final class WebServer
|
|
{
|
|
private static final int DEFAULT_PORT = 8080;
|
|
|
|
public static void main(String argv[]) throws Exception
|
|
{
|
|
// Get the port number from the command line.
|
|
int port = (argv.length > 0)
|
|
? (new Integer(argv[0])).intValue()
|
|
: DEFAULT_PORT;
|
|
|
|
// Establish the listen socket.
|
|
ServerSocket socket = new ServerSocket(port);
|
|
|
|
// Process HTTP service requests in an infinite loop.
|
|
while (true)
|
|
{
|
|
// Listen for a TCP connection request.
|
|
Socket connection = socket.accept();
|
|
|
|
// Construct an object to process the HTTP request message.
|
|
HttpRequest request = new HttpRequest(connection);
|
|
|
|
// Create a new thread to process the request.
|
|
Thread thread = new Thread(request);
|
|
|
|
// Start the thread.
|
|
thread.start();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|