0

我有一些简单的动态 XML,我想在使用 Java 的端点上通过 http 出售(例如:) http://localhost:8888/getUpdatedInfo

我真的很想避免使用框架或第三方库。我知道对于 WSDL 端点,使用普通 JDK 托管服务器非常简单(在http://docs.oracle.com/javaee/6/api/index.html?javax/xml/ws中使用 endpoint.publish() /端点.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 回答