JDK6.0的新特性:轻量级Http Server
转载:http://java.chinaitlab.com/JDK/713255.html
JDK6提供了一个简单的HttpServerAPI,据此我们可以构建自己的嵌入式HttpServer,它支持Http和Https协议,提供了HTTP1.1的部分实现,没有被实现的那部分可以通过扩展已有的HttpServerAPI来实现,程序员必须自己实现HttpHandler接口,HttpServer会调用HttpHandler实现类的回调方法来处理客户端请求,在这里,我们把一个Http请求和它的响应称为一个交换,包装成HttpExchange类,HttpServer负责将HttpExchange传给HttpHandler实现类的回调方法.下面代码演示了怎样创建自己的HttpServer
/**
*CreatedbyIntelliJIDEA.
*User:Chinajash
*Date:Dec30,2006
*/
publicclassHTTPServerAPITester{
publicstaticvoidmain(String[]args){
try{
HttpServerhs=HttpServer.create(newInetSocketAddress(8888),0);//设置HttpServer的端口为8888
hs.createContext("/chinajash",newMyHandler());//用MyHandler类内处理到/chinajash的请求
hs.setExecutor(null);//createsadefaultexecutor
hs.start();
}catch(IOExceptione){
e.printStackTrace();
}
}
}
classMyHandlerimplementsHttpHandler{
publicvoidhandle(HttpExchanget)throwsIOException{
InputStreamis=t.getRequestBody();
Stringresponse="<h3>HappyNewYear2007!--Chinajash</h3>";
t.sendResponseHeaders(200,response.length());
OutputStreamos=t.getResponseBody();
os.write(response.getBytes());
os.close();
}
}