Module jdk.httpserver

Interface HttpHandler


public interface HttpHandler
一个处理HTTP交换的处理程序。每个HTTP交换都由这些处理程序之一处理。
自从:
1.6
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(HttpExchange exchange)
    处理给定的请求并生成适当的响应。
  • Method Details

    • handle

      void handle(HttpExchange exchange) throws IOException
      处理给定的请求并生成适当的响应。查看 HttpExchange 以了解处理交换所涉及的步骤的描述。
      参数:
      exchange - 包含来自客户端的请求并用于发送响应的交换
      抛出:
      NullPointerException - 如果交换为null
      IOException - 如果发生I/O错误