HttpServer
文章平均质量分 77
ethan777
这个作者很懒,什么都没留下…
展开
-
HttpServer源码分析
/** * This class implements a simple HTTP server. A HttpServer is bound to an IP address * and port number and listens for incoming TCP connections from clients on this address. * The sub-cla...原创 2011-12-26 15:52:14 · 162 阅读 · 0 评论 -
Request
import java.util.*; import java.nio.*; import java.net.*; import java.io.*; import java.nio.channels.*; import com.sun.net.httpserver.*; import com.sun.net.httpserver.spi.*; /** */ clas...原创 2011-12-26 15:56:12 · 122 阅读 · 0 评论