读取输入流时出错:软件导致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上的一些类似问题中,我看到有人说这可能是企业防火墙配置问题?这是对的吗?如果是这样,我该如何修复它?
这可能是客户端代码(我无权访问)未正确编写的问题吗?