Java内置HttpServer的使用

試著忘記壹切 提交于 2020-02-09 20:13:32

一、相关类

1.HttpServer

表示一个服务器实例,需要绑定一个IP地址和端口号

2.HttpContext

服务器监听器的上下文

3.HttpHandler

上下文对应的http请求处理器

4.HttpExchange

监听器回调时传入的参数,封装了http请求和响应的所有数据操作

二、使用

public class MyServer {

    public static void main(String[] args) throws IOException {
        HttpServer httpServer = HttpServer.create(new InetSocketAddress(9090), 0);
        httpServer.createContext("/hello", new MyHandler());
        httpServer.start();
        System.out.println("server start...");
    }

    static class MyHandler implements HttpHandler {

        @Override
        public void handle(HttpExchange exchange) throws IOException {
            String response = "Hello World";
            exchange.sendResponseHeaders(200, 0);
            OutputStream os = exchange.getResponseBody();
            os.write(response.getBytes("UTF-8"));
            os.close();
        }
    }
}

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!