// Extract the filename from the request line.
StringTokenizer tokens = new
StringTokenizer(requestLine);
fis = new FileInputStream(fileName);
} catch (FileNotFoundException e) {
fileExists = false ;
}
// Debug info for private use
System.out.println(“Incoming!!!”);
0) {
System.out.println(headerLine);
}
// Construct the response message.
String statusLine = null;
String contentTypeLine = null;
entityBody = “<HTML>” +
“<HEAD><TITLE>Not Found</TITLE></HEAD>” +
“<BODY>Not Found</BODY></HTML>”;
}