在Java的官方文檔中有一個實現的簡單的web服務器(網站服務器培訓 郵件服務器培訓 視訊服務器培訓 ),我把他稍加潤色,試一下一個簡單的web服務器,源碼如下:
import com.sun.Net.httpserver.*;
import Java.Net.*;
import Java.io.*;
class MyHandler implements HttpHandler
{
public void handle(HttpExchange t) throws IOException
{
//InputStream is = t.getRequestBody();
//read(is);
String response = "This is the response";
t.sendResponseHeaders(200,response.length());
OutputStream os = t.getResponseBody();
os.write(response.getBytes());
os.close();
}
}
public class MyServer
{
public static void main(String argv[]) //throws IOException
{
try
{
HttpServer server = HttpServer.create(new InetSocketAddress(8000),0);
server.createContext("/myapp",new MyHandler());
server.setExecutor(null);
server.start();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
你可以用http://localhost:8000/myapp做測試,當然頁面內容很簡單,只是顯示一行"This is response"的字符串,下一步,將繼續加強這個服務器的功能。http://www.Javaeye.com/topic/342377這個貼子的例子還是蠻有幫助作用的。