connection.getOutputStream() 报java.net.ConnectException: Connection timed out: connect

摘自stackoverflow

Connection timeouts (assuming a local network and several client machines) typically result from

a) some kind of firewall on the way that simply eats the packets without telling the sender things like "No Route to host"

b) packet loss due to wrong network configuration or line overload

c) too many requests overloading the server 服务端请求超载

d) a small number of simultaneously available threads/processes on the server which leads to all of them being taken. This happens especially with requests that take a long time to run and may combine with c).

猜你喜欢

转载自blog.csdn.net/PyFanL/article/details/73647219