简单的javahttp服务器,来自java

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的javahttp服务器,来自java相关的知识,希望对你有一定的参考价值。

A simple http server, from java JDK.
  1. package com.example;
  2.  
  3. import java.io.IOException;
  4. import java.io.OutputStream;
  5. import java.net.InetSocketAddress;
  6.  
  7. import com.sun.net.httpserver.HttpExchange;
  8. import com.sun.net.httpserver.HttpHandler;
  9. import com.sun.net.httpserver.HttpServer;
  10.  
  11. public class Test {
  12.  
  13. public static void main(String[] args) throws Exception {
  14. HttpServer server = HttpServer.create(new InetSocketAddress(8000), 0);
  15. server.createContext("/test", new MyHandler());
  16. server.setExecutor(null); // creates a default executor
  17. server.start();
  18. }
  19.  
  20. static class MyHandler implements HttpHandler {
  21. public void handle(HttpExchange t) throws IOException {
  22. String response = "This is the response";
  23. t.sendResponseHeaders(200, response.length());
  24. OutputStream os = t.getResponseBody();
  25. os.write(response.getBytes());
  26. os.close();
  27. }
  28. }
  29.  
  30. }

以上是关于简单的javahttp服务器,来自java的主要内容,如果未能解决你的问题,请参考以下文章

Java Http(s)URLConnection java.io.IOException:服务器返回 HTTP 响应代码:403

如何使用 Ngrok 将简单的 Java HTTP 客户端应用程序连接到 Web 资源?

java 简单的代码片段,展示如何将javaagent附加到运行JVM进程

Java https 在握手时遇到问题

Java HTTP 代理服务器 [关闭]

Mobilefirst 8.0 Java 适配器 SSL