找到的解决方案:

这个异常发生在从某一个input stream流读取信息的时候发生的。
这个异常是发生在这样一种场景之下:

多个线程索引同一个input stream,当某一个thread在执行完之后,把这个inputstream关闭了;而此时正在从这个input stream流中读取信息的线程就会抛出 java.io.IOException: Stream closed 异常。

 

参考自:http://blog.zdnet.com.cn/html/84/289384-1075439.html

相关文章:

  • 2021-11-03
  • 2021-07-20
  • 2022-01-22
  • 2021-05-01
  • 2022-02-02
  • 2022-12-23
  • 2022-12-23
  • 2021-10-28
猜你喜欢
  • 2022-12-23
  • 2021-10-12
  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
相关资源
相似解决方案