0

Java を使用してエンドポイントで http 経由で配布したい単純な動的 XML があります (例: http://localhost:8888/getUpdatedInfo)。

フレームワークやサードパーティのライブラリの使用は避けたいと思っています。WSDL エンドポイントの場合、通常の JDK ( http://docs.oracle.com/javaee/6/api/index.html?javax/xml/wsで endpoint.publish() を使用) を使用してサーバーをホストするのは非常に簡単です。/Endpoint.html )

任意の HTML/XML に似たものはありますか?

4

1 に答える 1

4

com.sun.net.httpserverのドキュメントに見られるように:

import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpServer;

import java.io.IOException;
import java.io.OutputStream;
import java.net.InetSocketAddress;

public class SimpleHttpServer {
    public static void main(String[] args) throws IOException {
        HttpServer server = HttpServer.create(new InetSocketAddress(8888), 0);
        server.createContext("/foo", new HttpHandler() {
            public void handle(HttpExchange t) throws IOException {
                t.sendResponseHeaders(200, 0);
                OutputStream out = t.getResponseBody();
                out.write("hello world".getBytes());
                out.close();
            }
        });
        server.start();
    }
}
于 2012-05-16T00:44:51.420 に答える