gpt4 book ai didi

java - 如何从简单服务器生成的 HTTP 响应中删除 Content-length header ?

转载 作者:行者123 更新时间:2023-11-30 10:18:22 26 4
gpt4 key购买 nike

以下是我的示例 HTTP 服务器。我需要删除响应中生成的“Content-length:” header 。我尝试了很多方法但没有成功。有没有办法从服务器响应中删除内容长度?

public class SimpleHttpServer {

public static void main(String[] args) throws Exception {
HttpServer server = HttpServer.create(new InetSocketAddress(9000), 0);
server.createContext("/test", new TestHandler());
server.setExecutor(null); // creates a default executor
server.start();
}

static class TestHandler implements HttpHandler {
public void handle(HttpExchange t) throws IOException {
byte[] response = "Welcome to Test Server..!!\n".getBytes();
t.sendResponseHeaders(200, response.length);
OutputStream os = t.getResponseBody();
os.write(response);
os.close();
}
}
}

最佳答案

解决方法可能是:

t.sendResponseHeaders(200, 0);

注意

If the response length parameter is 0, then chunked transfer encoding is used and an arbitrary amount of data may be sent.

关于java - 如何从简单服务器生成的 HTTP 响应中删除 Content-length header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49317331/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com