httpserver:CIS 457 项目 1

时间:2024-07-15 02:20:19
【文件属性】:

文件名称:httpserver:CIS 457 项目 1

文件大小:33KB

文件格式:ZIP

更新时间:2024-07-15 02:20:19

Java

##CIS 457 项目 1:迷你 HTTP 服务器 类图 示例 HTTP 交换 在 URL 处检索文件 http://localhost/index.html:9876 首先打开一个到本地主机端口 9876 的套接字。然后,通过该套接字发送如下内容: GET /index.html HTTP/1.1\r\n \r\n 服务器应该响应如下内容,通过同一个套接字发回: HTTP/1.0 200 OK\r\n Date: Fri, 31 Dec 2009 23:59:59 GMT\r\n Last-Modified: Sat, 28 Nov 2009 03:50:37 GMT\r\n Content-Type: text/html\r\n Content-Length: 1354\r\n \r\n <html> <body>

Hello World!

(more f


【文件预览】:
httpserver-master
----Request.java(5KB)
----404.html(106B)
----HttpServer.java(4KB)
----403.html(81B)
----Log.java(1KB)
----501.html(47B)
----HttpServerUML.png(25KB)
----.gitignore(8B)
----RequestHandler.java(3KB)
----Response.java(5KB)
----README.md(4KB)
----DocRoot.java(3KB)

网友评论