在日常的开发中,我们用过很多开源的web服务器,例如tomcat、apache等等。现在我们自己实现一个简单的web服务器,基本的功能就是用户点击要访问的资源,服务器将资源发送到客户端的浏览器。web服务基于的是HTTP协议,用户在浏览器的地址栏输入要访问的地址,服务器如何得到该地址是个关键。先看下一般的HTTP请求和响应报文的一般格式:

HTTP 请求报文

HTTP 响应报文

二 socket类 套接字是网络连接的断点。套接字使得应用程序可以从网络中读取数据,可以向网络中写入数据。不同计算机上的应用程序可以通过套接字发送或接受字节流。java中提供了Socket类来实现这个功能,通过getInputStream和getOutputStream可以获取网络中的输入输出流。 但是,光靠Socket类还是不能够实现我们构建一个服务器应用程序的功能的,因为服务器必须时刻待命,因此java里面提供了ServerSocket类来处理等待来自客户端的请求,当ServerSocket接受到了来自客户端的请求之后,它就会创建一个实例来处理与客户端的通信。 三 服务器应用程序的实现 首先,我们要构建一个封装请求信息的类requst,一个响应请求的类response,还要有一个主程序httpServer来处理客户端来的请求。

下面是代码:

Request类:

package server;

import java.io.IOException;

import java.io.InputStream;

/**

* 将浏览器发来的请求信息转化成字符和截取url

*/

public class Request {

//输入流

private InputStream input;

//截取url,如http://localhost:8080/index.html ,截取部分为 /index.html

private String uri;

public Request(InputStream inputStream){

this.input = inputStream;

}

public InputStream getInput() {

return input;

}

public void setInput(InputStream input) {

this.input = input;

}

public String getUri() {

return uri;

}

public void setUri(String uri) {

this.uri = uri;

}

//从套接字中读取字符信息

public void parse(){

StringBuffer request = new StringBuffer(2048);

int i = 0;

byte[] buffer = new byte[2048];

try {

i = input.read(buffer);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

i = -1;

}

for(int j = 0;j

request.append((char)(buffer[j]));

}

System.out.println(request.toString());

uri = parseUri(request.toString());

}

//截取请求的url 截取index.html

private String parseUri(String requestString){

int index1 = 0;

int index2 = 0;

index1 = requestString.indexOf(' ');

if(index1!=-1){

index2 = requestString.indexOf(' ',index1+1);

if(index2>index1){

return requestString.substring(index1+1,index2);

}

}

return null;

}

}

Responselei

package server;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.io.OutputStream;

/**

* 类说明 根据相应信息返回结果

*/

public class Response {

private static final int BUFFER_SIZE = 1024;

Request request;

OutputStream output;

public Response(OutputStream output){

this.output = output;

}

public void sendStaticResource() throws IOException{

byte[] bytes = new byte[BUFFER_SIZE];

FileInputStream fis = null;

File file = new File(HttpServer.WEB_ROOT,request.getUri());

if(file.exists()){

try {

fis = new FileInputStream(file);

int ch = fis.read(bytes,0,BUFFER_SIZE);

while(ch != -1){

output.write(bytes,0,ch);

ch = fis.read(bytes,0,BUFFER_SIZE);

}

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}catch(IOException e){

e.printStackTrace();

}finally{

if(fis !=null){

fis.close();

}

}

}else{

//找不到文件

String errorMessage = "HTTP/1.1 404 File Not Found\r\n" +

"Content-Type: text/html\r\n" +

"Content-Length: 23\r\n" +

"\r\n" +

"

File Not Found

";

try {

output.write(errorMessage.getBytes());

output.flush();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

public Request getRequest() {

return request;

}

public void setRequest(Request request) {

this.request = request;

}

public OutputStream getOutput() {

return output;

}

public void setOutput(OutputStream output) {

this.output = output;

}

public static int getBUFFER_SIZE() {

return BUFFER_SIZE;

}

}

HttpServer类

package server;

import java.io.File;

import java.io.InputStream;

import java.io.OutputStream;

import java.net.InetAddress;

import java.net.ServerSocket;

import java.net.Socket;

/**

* 类说明

* 时刻等待前端请求

*/

public class HttpServer {

/**

* @param args

*/

//WEB_ROOT是服务器的根目录

public static final String WEB_ROOT = System.getProperty("user.dir")+File.separator+"webroot";

//关闭的命令

// private static final String SHUTDOWN_COMMAND= "/SHUTDOWN";

public static void main(String[] args) {

// TODO Auto-generated method stub

HttpServer server = new HttpServer();

server.await();

}

public void await(){

ServerSocket serverSocket = null;

int port = 8080;

try {

serverSocket = new ServerSocket(port,1,InetAddress.getByName("127.0.0.1"));

while(true)

{

try {

Socket socket = null;

InputStream input = null;

OutputStream output = null;

socket = serverSocket.accept();

input = socket.getInputStream();

output = socket.getOutputStream();

//封装request请求

Request request = new Request(input);

request.parse();

//封装response对象

Response response = new Response(output);

response.setRequest(request);

response.sendStaticResource();

socket.close();

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

continue;

}

}

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

DEMO目录结构:

运行HttpServer,在浏览器上输入以下地址即可看到效果

http://localhost:8080/index.html

java实现web服务器_Java 实现一个简单的web服务器相关推荐

  1. 【计算机网络作业】Java UDP聊天 和 Socket编写一个简单的Web服务器

    1-1 假设Tom和Jerry利用Java UDP进行聊天,请为他们编写程序.具体如下: (1).Tom和Jerry聊天的双方都应该具有发送端和接收端: (2).利用DatagramSocket与Da ...

  2. java编写服务器_java编写一个简单的回射服务器

    全部代码 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; im ...

  3. ipad php mysql_如何用PHP/MySQL为 iOS App 写一个简单的web服务器(译) PART1

    原文:http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-app 作为一个i ...

  4. 我的Go语言学习之旅八:创建一个简单的WEB服务器

    因为一直在做WEB程序,所以更关注WEB界的发展,这里就用GO做了一个简单的WEB服务器,直接看例子吧 package main import ( "fmt" "net/ ...

  5. hosts多个ip对应一个主机名_一个简单的Web应用程序,用作连接到ssh服务器的ssh客户端...

    WebSSH 一个简单的Web应用程序,用作连接到ssh服务器的ssh客户端.它是用Python编写的,基于tornado,paramiko和xterm.js. 特征 支持SSH密码验证,包括空密码. ...

  6. ios php mysql实例_如何用PHP/MySQL为 iOS App 写一个简单的web服务器(译) PART1

    原文:http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-app 作为一个i ...

  7. 用python写一个简单的web服务器

    人生苦短,我用python 简洁高效,这才是理想的语言啊 分享一点python的学习经验-----如何用python写一个简单的web服务器 首先,我们需要简单地了解一下网络通信协议,这里用白话介绍一 ...

  8. web服务器python_一个简单的web服务器(python)

    今天用python写一个简单的web服务器代码网上都有只是为了方便大家学习做了一个简单的教程 第一首先我们来一张架构以及运行过程的流程图 本文学习仅供参考,需要更多资料可以加群:496257369 简 ...

  9. 如何用PHP/MySQL为 iOS App 写一个简单的web服务器(译) PART1

    原文:http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-app 作为一个i ...

最新文章

  1. dot3_bump_mapping
  2. exit语句php,php or die() 语句,exit()
  3. android handle显示加载框
  4. gulp教程之gulp-minify-css【gulp-clean-css】
  5. python登录各种网页示例_Python 通过爬虫实现GitHub网页的模拟登录的示例代码
  6. 16篇最新推荐系统论文送你(文末附打包下载链接)
  7. 打通语言理论和统计 NLP 两个世界,Transformers/GNNs 架构能做到吗?
  8. HDOJ 2050 折线分割平面
  9. Python使用freetype渲染显示阿拉伯语
  10. 目标检测Anchor-free分支:基于关键点的目标检测(最新网络全面超越YOLOv3)
  11. Spark入门基本操作
  12. GPC凝胶色谱理论和应用(三)
  13. 递归实现顺序输出整数
  14. Java虚拟机(JVM)面试题(2022年总结最全面的面试题!!!)
  15. 抛弃 CSS Hacks 后的浏览器兼容方案
  16. 笔记本计算机死机,一起可笑的笔记本电脑死机故障
  17. 【附源码】计算机毕业设计SSM社区团购系统
  18. Cannot find module ‘worker_threads‘
  19. Vuex完整示例代码
  20. 2.1、HC-06蓝牙模块

热门文章

  1. 介绍几个photoshop cs4值得一提的新功能
  2. Java生成二维码并将其绘制成个人名片图片
  3. 用遗传搜索算法求函数2*x1^2+3*x2^2的最大值(C++实现)
  4. https返回400_httpClient 返回400
  5. 有勇气辞职,才有勇气去追求我想要的人生
  6. android维文字体没连接,Android-用webview加载html代码时,正文的字体在不同的机器上不适配是什么原因...
  7. 8个基本的Docker容器管理命令
  8. Thymeleaf 详解
  9. java,微信公众号跳转到第三方界面,第三方界面获取用户信息,申请微信公众号测试号
  10. SAP-MM-PA精解分析系列之基本介绍(02) -组织架构