IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> 5步简单手写一个web服务器 -> 正文阅读

[系统运维]5步简单手写一个web服务器

  1. 建立一个Socket并用死循环的形式监听指定端口
package com.study.diyserver;

import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;

/**
 * @ClassName HttpServer
 * @Descriotion TODO
 * @Author nitaotao
 * @Date 2022/5/5 8:38
 * @Version 1.0
 * 建立一个Socket并用死循环的形式监听指定端口
 **/
public class HttpServer {
    public static String ROOT = "src/main/resources";
    //默认ROOT文件夹
    public static String defaultPage = "index.html";

    public static void main(String[] args) throws IOException {
        ServerSocket server = new ServerSocket(8000);
        while (true) {
            //阻塞:等待浏览器的连接
            Socket sk = server.accept();
            System.out.println("等待连接...");
            //启动服务线程
            new HttpThread(sk).start();

        }
    }
}

  1. 实现一个多线程的程序,用来处理每一个用户的请求
package com.study.diyserver;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;

/**
 * @ClassName HttpThread
 * @Descriotion TODO
 * @Author nitaotao
 * @Date 2022/5/5 9:22
 * @Version 1.0
 * 实现一个多线程的程序,用来处理每一个用户的请求
 **/
public class HttpThread extends Thread {
    private Socket socket;

    public HttpThread(Socket sk) {
        this.socket = sk;
    }

    @Override
    public void run() {

        InputStream ins = null;
        OutputStream outs = null;
        try {
            ins = socket.getInputStream();
            outs = socket.getOutputStream();
            Receive receive = new Receive(ins);
            //用Receive类获取浏览器发来的URL请求
            String URL = receive.parse();
            System.out.println("URL:"+URL);
            if ("/".equals(URL)) {
                //如果没有指定文件,那么给传来的URL加上默认文件名
                URL = HttpServer.defaultPage;
            }
            System.out.println("URL:"+URL);
            Answer ans = new Answer(outs);
            //再将URL执行的文件用Answer类的send方法返回给浏览器
            ans.Send(URL);
        } catch (IOException e) {
            System.out.println(e.toString());
        }finally{
            try {
                if (ins != null) {
                    ins.close();
                }
                if (outs != null) {
                    outs.close();
                }
                if (socket != null) {
                    socket.close();
                }
            } catch (Exception e){} {

            }
        }

    }
}

  1. 本类取得了浏览器传过来的URL字符串
package com.study.diyserver;

import java.io.IOException;
import java.io.InputStream;

/**
 * @ClassName Receive
 * @Descriotion TODO
 * @Author nitaotao
 * @Date 2022/5/5 9:32
 * @Version 1.0
 * 本类取得了浏览器传过来的URL字符串
 **/
public class Receive {
    private InputStream in = null;

    public Receive(InputStream in) {
        this.in = in;

    }

    //这个方法的目的是将URL的请求的文件返回
    public String parse() {
        //这个变量就是实际从浏览器获取的请求数据流
        StringBuffer receiveStr = new StringBuffer(2048);
        int i;
        byte[] bytes = new byte[2048];
        try {
            i = in.read(bytes);

        } catch (IOException e) {
            i = -1;
            e.printStackTrace();
        }
        for (int j = 0; j < i; j++) {
            //将取得的信息循环追加到receiveStr变量中
            //此处不填 char ,会是数字
            receiveStr.append((char)bytes[j]);
        }
        return getUri(receiveStr.toString());

    }

    //将收到的HTTP协议数据包分解,取出文件名的描述URL
    private String getUri(String receiveStr) {
        System.out.println("===============receiveStr===================");
        System.out.println(receiveStr);
        System.out.println("===============receiveStr===================");
        int index1, index2;
        index1 = receiveStr.indexOf(' ');
        if (index1 != -1) {
            index2 = receiveStr.indexOf(' ', index1 + 1);
            if (index2 > index1) {
                return receiveStr.substring(index1 + 1, index2);
            }
        }
        return null;
    }
}

  1. 设置响应转发,处理地址请求
package com.study.diyserver;

import java.io.*;

/**
 * @ClassName Answer
 * @Descriotion TODO
 * @Author nitaotao
 * @Date 2022/5/5 9:53
 * @Version 1.0
 **/
public class Answer {
    private OutputStream outs;

    public Answer(OutputStream outs) {
        this.outs = outs;
    }
    public void Send(String pagefile) throws IOException {
        byte[] bytes = new byte[2048];
        FileInputStream fis = null;
        File file = new File(HttpServer.ROOT, pagefile);
        System.out.println(file.getPath());
        if (file.exists()) {
            fis = new FileInputStream(file);
            int ch = fis.read(bytes, 0, 2048);
            String sBody = new String(bytes, 0);
            //返回的信息是在文件内容前面加上HTTP协议的格式内容
            String sendMessage = "HTTP/1.1 200 OK\r\n" +
                    "Content-Type:text/html\r\b" +
                    "Content-Length:" + ch + "\r\n" +
                    "\r\n" + sBody;
            //输出文件
            outs.write(sendMessage.getBytes());
        } else {
            //文件不存在的话,就返回HTTP协议格式内容
            String errorMessage = "HTTP/1.1 404 File Not Found\r\n" +
                    "Content-Type:text/html\r\b" +
                    "Content-Length: 23\r\n" +
                    "\r\n" +
                    "<h1>File Not Found</h1>";
            outs.write(errorMessage.getBytes());
        }
        if (fis != null) {
            fis.close();
        }
    }
}

  1. 访问的页面
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>SUCCESS</h1>
</body>
</html>

参考《java程序员上班那点事儿》,强烈推荐!!!

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-05-06 11:20:15  更:2022-05-06 11:21:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 17:37:07-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码