Java で単純な HttpServer を作成して GET 要求を処理しようとしていますが、要求の GET パラメーターを取得しようとすると、HttpExchange クラスにそのためのメソッドがないことに気付きました。
GET パラメータ (クエリ文字列) を読み取る簡単な方法を知っている人はいますか?
これは私のハンドラーがどのように見えるかです:
public class TestHandler{
@Override
public void handle(HttpExchange exc) throws IOxception {
String response = "This is the reponse";
exc.sendResponseHeaders(200, response.length());
// need GET params here
OutputStream os = exc.getResponseBody();
os.write(response.getBytes());
os.close();
}
}
..そして主な方法:
public static void main(String[] args) throws Exception{
// create server on port 8000
InetSocketAddress address = new InetSocketAddress(8000);
HttpServer server = new HttpServer.create(address, 0);
// bind handler
server.createContext("/highscore", new TestHandler());
server.setExecutor(null);
server.start();
}