Official reasons for “Software caused connection abort: socket write error”

后端 未结 14 1994
别跟我提以往
别跟我提以往 2020-11-21 07:21

Given this stack trace snippet

Caused by: java.net.SocketException: Software caused connection abort: socket write error
&nbs

14条回答
  •  梦如初夏
    2020-11-21 08:22

    My server was throwing this exception in the pass 2 days and I solved it by moving the disconnecting function with:

    outputStream.close();
    inputStream.close();
    Client.close();
    

    To the end of the listing thread. if it will helped anyone.

提交回复
热议问题