0

似乎使用 curl 和大多数 Web 浏览器,我的服务器代码在客户端能够读取响应之前关闭连接。这是我的代码

public void run() {
        try {
            InputStream input = clientSocket.getInputStream();
            OutputStream output = clientSocket.getOutputStream();
            System.out.println(input);

            // getRequestObject(input);
            long time = System.currentTimeMillis();
            output.write(("HTTP/1.1 200 OK\n\nWorkerRunnable: " + this.serverText + " - " + time + "").getBytes());
            output.flush();
            output.close();
            input.close();
            System.out.println("Request processed: " + time);
        } catch (IOException e) {
            // report exception somewhere.
            e.printStackTrace();
        }
    }

    protected String readInputStream(InputStream input) throws IOException {
        String inputLine;
        BufferedReader in = new BufferedReader(new InputStreamReader(input));
        StringBuilder sb = new StringBuilder();
        while (!(inputLine = in.readLine()).equals("")) {
            sb.append(inputLine);
        }
        return sb.toString();
    }

有什么想法吗?

4

1 回答 1

3

也许问题可能是由于您没有读取客户端数据这一事实引起的。客户端试图向您发送 HTTP 标头,但您立即开始发送响应。尝试从 中读取,InputStream直到收到一个空行(表示请求 HTTP 标头结束),然后开始发送输出。

如果您需要在应用程序中嵌入 HTTP 服务器,我强烈建议您使用现有库。实现自己的 HTTP 兼容服务器将是一项乏味的工作。看

于 2012-08-16T07:03:21.600 回答