读取输入流时出错:软件导致Java服务器中的连接中止

我基本上正在尝试在Android设备上托管服务器。客户端设备通过 TCP 连接到服务器并发送请求。服务器执行客户端请求的操作,然后将数据写回套接字。服务器不会终止连接,并且请求将通过套接字连续读取并回复。

注意:每个请求消息的前 4 个字节包含实际消息/请求的长度。

parseXmlInputAndExecuteCmd 函数根据输入 XML 字符串的内容执行各种异步操作。这最终会导致'allowResponse'变量的布尔值更改为true,并生成一个特定的响应,该响应存储在名为'response'的String类型的变量中。一旦布尔值“allowResponse”变为真,线程就会恢复执行并将响应写回套接字的 OutputStream。

其中一些异步操作包括连接和断开与企业 VPN 的连接。这可能是错误的原因吗?

正在使用的一些类级变量是:

private volatile boolean allowResponse = false;
private String response;

服务器代码:

    private void startServer() {
    try {
        ServerSocket serverSocket = new ServerSocket(8080);
        while (true) {
            Socket connectionSocket = serverSocket.accept();
            BufferedInputStream bufInpStream = new BufferedInputStream(connectionSocket.getInputStream());
            BufferedOutputStream bufOutStream = new BufferedOutputStream(connectionSocket.getOutputStream());
            ByteArrayOutputStream contentLengthBaos = new ByteArrayOutputStream();
            int c;
            int count = 0;
            while ((c = bufInpStream.read()) != -1) {
                contentLengthBaos.write(c);
                count++;
                if (count == 4) {
                    int contLen = getMessageLength(contentLengthBaos);
                    String content = getMessageContent(bufInpStream, contLen);
                    parseXmlInputAndExecuteCmd(content);
                    count = 0;
                    while (!allowResponse) {
                        Thread.sleep(1000);
                    }
                    allowResponse = false;
                    byte[] responseDataBytes = response.getBytes();
                    int outputContLen = responseDataBytes.length;
                    byte[] contLengthBytes = ByteBuffer.allocate(4).putInt(outputContLen).array();
                    ByteArrayOutputStream o = new ByteArrayOutputStream();
                    o.write(contLengthBytes);
                    o.write(responseDataBytes);
                    byte finalOutPutBytes[] = o.toByteArray();
                    bufOutStream.write(finalOutPutBytes);
                    bufOutStream.flush();
                }
            }
        }
    } catch (IOException e) {
        e.printStackTrace();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}

@NonNull
private String getMessageContent(BufferedInputStream inFromClient, int contLen) throws IOException {
    ByteArrayOutputStream contentBaos = new ByteArrayOutputStream();
    byte[] contentBytes = new byte[contLen];
    for (int i = 0; i < contLen; i++) {
        contentBaos.write(inFromClient.read());
        ByteArrayInputStream bais = new ByteArrayInputStream(contentBaos.toByteArray());
        bais.read(contentBytes);
    }
    String content = new String(contentBytes);
    Log.d(TAG, "Content : " + content);
    return content;
}

private int getMessageLength(ByteArrayOutputStream contentLengthBaos) {
    byte[] firstFourBytesArr = contentLengthBaos.toByteArray();
    int contLen = new BigInteger(firstFourBytesArr).intValue();
    contentLengthBaos = new ByteArrayOutputStream();
    Log.d(TAG, "Content length: " + contLen);
    return contLen;
}

使用以下代码行启动服务器:

Thread serverThread = new Thread(new Runnable() {
        @Override
        public void run() {
            startServer();
        }
    });
    serverThread.start();

我得到以下错误堆栈跟踪:

W/System.err: java.net.SocketException: Software caused connection abort
                  at java.net.SocketInputStream.socketRead0(Native Method)
                  at java.net.SocketInputStream.socketRead(SocketInputStream.java:114)
W/System.err:     at java.net.SocketInputStream.read(SocketInputStream.java:170)
W/System.err:     at java.net.SocketInputStream.read(SocketInputStream.java:139)
W/System.err:     at java.io.BufferedInputStream.fill(BufferedInputStream.java:248)
W/System.err:     at java.io.BufferedInputStream.read(BufferedInputStream.java:267)
                  at com.example.umathur.myapplication.MainActivity.startServer(MainActivity.java:192)
                  at com.example.umathur.myapplication.MainActivity.access$000(MainActivity.java:61)
                  at com.example.umathur.myapplication.MainActivity$1.run(MainActivity.java:139)
                  at java.lang.Thread.run(Thread.java:764)

我收到一个名为:java.net.SocketException: Software caused connection abort

我不确定在输入流/输出流的使用中我在哪里出错。我在以下行(堆栈跟踪中提到的行号192)收到错误:

while ((c = inputStream.read()) != -1)

在StackOverflow上的一些类似问题中,我看到有人说这可能是企业防火墙配置问题?这是对的吗?如果是这样,我该如何修复它?

这可能是客户端代码(我无权访问)未正确编写的问题吗?


答案 1

我无法在本地重现您的问题,并且有些事情告诉我您的触发条件非常具体,但这里有一些事情可以帮助您诊断和解决问题。

  1. 您的验证码:如果是你的代码,那么现有的Web服务器代码应该可以工作。试试这篇漂亮的最小Medium文章中的代码,了解如何创建自己的Java Web服务器
  2. 防火墙:如果是防火墙,请联系您的网络管理员/团队等。如果你不知道它是谁,只要和你公司里一个你觉得舒服的人交谈,他们应该能够引导你找到合适的人。
  3. 插座SO_KEEPALIVE选件:我发现了一个关于这个主题的有趣的超级用户问题,并读到这个问题可能是由于你没有在套接字上设置SO_KEEPALIVE标志这一事实引起的。答案谈到了PuTTY,但我认为在Java套接字上尝试可能是值得的。这当然是一个低垂的果实。因此,请尝试通过线路后面的调用进行添加。connectionSocket.setKeepAlive(true);Socket connectionSocket = serverSocket.accept();

答案 2

我试图在我的电脑(不是Android)中运行你的代码,它的工作原理很好,只需从浏览器调用“localhost:8080”。

我认为您可以在设备中执行相同的操作,只是为了知道它是否是客户端问题。

我编辑了这两行,以避免长时间等待:

byte[] contentBytes = new byte[10];
    for (int i = 0; i < 10; i++) {

推荐