Java SE には、HTTP クライアント機能用の HttpURLConnection が含まれていますが、同様のサーバー側オプションがありません。 HTTP リクエストとレスポンスの面倒な手動解析とフォーマットを回避するには、jdk.httpserver モジュールにある Java SE 6 で導入された組み込み HTTP サーバーを検討してください。
ここにあります組み込みの HTTP サーバーを使用してリクエストを処理する例:
package com.example; import java.io.IOException; import java.io.OutputStream; import java.net.InetSocketAddress; import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpHandler; import com.sun.net.httpserver.HttpServer; public class SimpleHttpServer { public static void main(String[] args) throws Exception { HttpServer server = HttpServer.create(new InetSocketAddress(8000), 0); server.createContext("/test", new MyHandler()); server.setExecutor(null); // Creates a default executor server.start(); } static class MyHandler implements HttpHandler { @Override public void handle(HttpExchange t) throws IOException { String response = "This is the response"; t.sendResponseHeaders(200, response.getBytes().length); // Specify charset for getBytes() OutputStream os = t.getResponseBody(); os.write(response.getBytes()); os.close(); } } }
指定された URL にアクセスします(例: http://localhost:8000/test) ブラウザで応答を確認します:
This is the response
The com.sun. パッケージは、組み込みの Java SE API ではなく、Sun/Oracle 固有の API を使用する開発者が作成したコードに特に関係するため、使用は禁止されていません。したがって、HTTP サーバーに com.sun. クラスを利用することは、これらのクラスがすべての JDK 実装に含まれているため許容されます。
以上がJava SE APIを使用して単純なHTTPサーバーを作成するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。